logzen
    Preparing search index...

    Interface IOInterface<I>

    Common interface for I/O

    interface IOInterface<I extends SupportedInterface> {
        receive?(io: I, handler: (message: IOMessage) => boolean): void;
        send?(io: I, message: IOMessage): boolean;
    }

    Type Parameters

    Index

    Methods

    Methods