kkrpc
    Preparing search index...

    Interface IoCapabilities

    Capabilities exposed by an IO adapter. These capabilities are used by RPCChannel to decide whether structured clone messaging and transferable objects can be used.

    interface IoCapabilities {
        structuredClone?: boolean;
        transfer?: boolean;
        transferTypes?: string[];
    }
    Index

    Properties

    structuredClone?: boolean

    Adapter can send/receive structured clone objects (e.g. postMessage based transports).

    transfer?: boolean

    Adapter can transfer transferable objects without copying.

    transferTypes?: string[]

    Optional list of known transferable object types supported by the adapter.