Interface MethodInfoBiDiStreaming<I, O>

A method that streams bi-directionally: rpc (stream Input) returns (stream Output)

interface MethodInfoBiDiStreaming {
    I: MessageType<I>;
    O: MessageType<O>;
    idempotency?: MethodIdempotency;
    kind: BiDiStreaming;
    name: string;
}

Type Parameters

Hierarchy

Properties

Properties

idempotency?: MethodIdempotency
name: string

Generated using TypeDoc