kkrpc
    Preparing search index...

    Interface DestroyableIoInterface

    A destroyable IoInterface, mainly for iframe and web worker communication Used for cleaning up resources, e.g. MessageChannel

    interface DestroyableIoInterface {
        name: string;
        destroy(): void;
        read(): Promise<
            null
            | string
            | Uint8Array<ArrayBufferLike>
            | Buffer<ArrayBufferLike>,
        >;
        signalDestroy(): void;
        write(data: string): Promise<void>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    name: string

    Methods

    • Returns Promise<null | string | Uint8Array<ArrayBufferLike> | Buffer<ArrayBufferLike>>