Send sends a request message to the server. The client may call Send multiple times to send multiple messages to the server. On error, Send aborts the stream. If the error was generated by the client, the status is returned directly. Otherwise, io.EOF is returned, and the status of the stream ma
(*Req)
| 118 | // is returned directly. Otherwise, io.EOF is returned, and the status of |
| 119 | // the stream may be discovered using Recv(). |
| 120 | Send(*Req) error |
| 121 | |
| 122 | // Recv receives the next response message from the server. The client may |
| 123 | // repeatedly call Recv to read messages from the response stream. If |
no outgoing calls