Given a message, produce an InputStream for it so that it can be written to the wire. Where possible implementations should produce streams that are io.grpc.KnownLength to improve transport efficiency. @param value to serialize. @return serialized value as stream of bytes.
(T value)
| 146 | * @return serialized value as stream of bytes. |
| 147 | */ |
| 148 | public InputStream stream(T value); |
| 149 | |
| 150 | /** |
| 151 | * Given an {@link InputStream} parse it into an instance of the declared type so that it can be |
no outgoing calls