kkrpc
    Preparing search index...

    Interface TransferDescriptor

    Utilities for marking values to be transferred across RPC boundaries. Users call transfer(value, [transferables]) to hint kkrpc that the value should be moved instead of cloned when the transport supports transferable objects.

    interface TransferDescriptor {
        handler?: string;
        transfers: Transferable[];
        value: unknown;
    }
    Index

    Properties

    handler?: string
    transfers: Transferable[]
    value: unknown