gRPC & RPC

Client Streaming RPC

A gRPC pattern where the client sends a stream of messages and the server responds with a single message after receiving all client data. This is useful for bulk uploads, telemetry ingestion, and aggregation scenarios. The server responds only once, typically after processing all messages or when it decides enough data has been received. The server can also terminate the stream early by sending an error status.

Verwandte Protokolle

Siehe auch