public interface GrpcReadStream<T> extends ReadStream<T>
Modifier and Type | Method and Description |
---|---|
<R,A> Future<R> |
collecting(java.util.stream.Collector<T,A,R> collector) |
String |
encoding() |
Future<Void> |
end() |
GrpcReadStream<T> |
endHandler(Handler<Void> handler)
Set an end handler.
|
GrpcReadStream<T> |
errorHandler(Handler<GrpcError> handler)
Set a handler to be notified with gRPC errors.
|
GrpcReadStream<T> |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the read stream.
|
GrpcReadStream<T> |
fetch(long l)
Fetch the specified
amount of elements. |
GrpcReadStream<T> |
handler(Handler<T> handler)
Set a data handler.
|
MultiMap |
headers() |
Future<T> |
last() |
GrpcReadStream<T> |
messageHandler(Handler<GrpcMessage> handler)
Set a handler to be notified with incoming encoded messages.
|
GrpcReadStream<T> |
pause()
Pause the
ReadStream , it sets the buffer in fetch mode and clears the actual demand. |
GrpcReadStream<T> |
resume()
Resume reading, and sets the buffer in
flowing mode. |
pipe, pipeTo, pipeTo
String encoding()
identity
or gzip
GrpcReadStream<T> messageHandler(Handler<GrpcMessage> handler)
handler
is
responsible for fully decoding incoming messages, including compression.handler
- the message handlerGrpcReadStream<T> errorHandler(Handler<GrpcError> handler)
handler
- the error handlerGrpcReadStream<T> exceptionHandler(Handler<Throwable> handler)
ReadStream
exceptionHandler
in interface ReadStream<T>
exceptionHandler
in interface StreamBase
handler
- the exception handlerGrpcReadStream<T> handler(Handler<T> handler)
ReadStream
handler
in interface ReadStream<T>
GrpcReadStream<T> pause()
ReadStream
ReadStream
, it sets the buffer in fetch
mode and clears the actual demand.
While it's paused, no data will be sent to the data handler
.
pause
in interface ReadStream<T>
GrpcReadStream<T> resume()
ReadStream
flowing
mode.
If the ReadStream
has been paused, reading will recommence on it.resume
in interface ReadStream<T>
GrpcReadStream<T> fetch(long l)
ReadStream
amount
of elements. If the ReadStream
has been paused, reading will
recommence with the specified amount
of items, otherwise the specified amount
will
be added to the current stream demand.fetch
in interface ReadStream<T>
GrpcReadStream<T> endHandler(Handler<Void> handler)
ReadStream
endHandler
in interface ReadStream<T>
Future<Void> end()
<R,A> Future<R> collecting(java.util.stream.Collector<T,A,R> collector)
Copyright © 2023 Eclipse. All rights reserved.