Skip to content

GrpcClientCmd

GrpcClientCmd = { kind: "unary"; method: string; request: unknown; target: ActorRef<unknown>; } | { kind: "serverStream"; method: string; request: unknown; target: ActorRef<unknown>; } | { kind: "bidiStart"; method: string; target: ActorRef<unknown>; } | { chunk: unknown; kind: "bidiSend"; streamId: number; } | { kind: "bidiClose"; streamId: number; }

Defined in: src/io/broker/GrpcClientActor.ts:40

Outbound command — what the actor accepts to fire RPC calls.