Receives a value from the stream. Can be called many times but is never called after #onError(Throwable) or #onCompleted() are called. Unary calls must invoke onNext at most once. Clients may invoke onNext at most once for server streaming calls, but may receive many onNext
(V value)
| 60 | * @param value the value passed to the stream |
| 61 | */ |
| 62 | void onNext(V value); |
| 63 | |
| 64 | /** |
| 65 | * Receives a terminating error from the stream. |
no outgoing calls