gRPC Communication Patterns
← Back to gRPC
Unary (single request/response), server streaming (one request, stream of responses), client streaming (stream of requests, one response), and bidirectional streaming (both sides stream). HTTP/2 enables multiplexing and efficient streaming.
Key Properties
Related
- Protocol Buffers (message format)
- Inter-Service Communication (use case)