Lines Matching refs:streaming
61 shell where you ran the client binary, you should see the output of the bidirectional streaming rpc,
69 streaming and client-side streaming.
115 - A *server-side streaming RPC* where the client sends a request to the server and gets a stream
117 no more messages. As you can see in our example, you specify a server-side streaming method by
127 - A *client-side streaming RPC* where the client writes a sequence of messages and sends them to
129 all and return its response. You specify a client-side streaming method by placing the `stream`
137 - A *bidirectional streaming RPC* where both sides send a sequence of messages. The two streams
393 #### Server-side streaming RPC
394 Now let's look at one of our streaming RPCs. `list_features` is a server-side streaming RPC, so we
427 #### Client-side streaming RPC
428 Now let's look at something a little more complicated: the client-side streaming method
477 #### Bidirectional streaming RPC
478 Finally, let's look at our bidirectional streaming RPC `route_chat`, which receives a stream
643 #### Server-side streaming RPC
644 Here's where we call the server-side streaming method `list_features`, which returns a stream of
685 #### Client-side streaming RPC
686 The client-side streaming method `record_route` takes a stream of `Point`s and returns a single
733 #### Bidirectional streaming RPC
735 Finally, let's look at our bidirectional streaming RPC. The `route_chat` method takes a stream