kkrpc
    Preparing search index...

    Interface IoInterface

    Theoretically, any bidirectional channel with read and write can be used to build a RPC interface.

    interface IoInterface {
        name: string;
        read(): Promise<
            null
            | string
            | Uint8Array<ArrayBufferLike>
            | Buffer<ArrayBufferLike>,
        >;
        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>>

    • Parameters

      • data: string

      Returns Promise<void>