Interface IGnp

A GNP communication endpoint.

interface IGnp {
    read(request: Subcommand | IGnpRequest): Promise<PacketData>;
    sendEvent(request: Subcommand | IGnpRequest): void;
    write(request: Subcommand | IGnpRequest): Promise<void>;
}

Hierarchy (View Summary)

Methods