Send sends the provided message on the stream.
([]byte)
| 47 | type Stream interface { |
| 48 | // Send sends the provided message on the stream. |
| 49 | Send([]byte) error |
| 50 | |
| 51 | // Recv blocks until the next message is received on the stream. |
| 52 | Recv() ([]byte, error) |
no outgoing calls