Interface MethodInfoServerStreaming<I, O>

A server streaming method: rpc (Input) returns (stream Output)

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

Type Parameters

Hierarchy

Properties

Properties

idempotency?: MethodIdempotency
name: string

Generated using TypeDoc