Quiz
- What is the RPC operation that tells the server that the client is ready to send a request?
Send Trailer
Send Message
Send Header
- What is the RPC operation that tells the client that the server is done returning response(s)?
Send Half-Close
Send Trailer
Send Header
- Which RPC type can be used for downloading information by chunks in one request from the client side?
- Server streaming
- Client streaming
- Bidirectional streaming
- Unary
- Which RPC type is the equivalent of a traditional HTTP/1.1 request?
- Server streaming
- Client streaming
- Bidirectional streaming
- Unary
- What is a channel?
- An abstraction used by RPCs for representing a connection to any available server discovered by the load balancer.
- An abstraction used by the load balancer for representing a connection to a specific server.
- Both of the above
- What is a subchannel?
- An abstraction used by RPCs for representing a connection to any available server discovered by the load balancer.
- An abstraction used by the load balancer...