T - the type of the objects that can be read from the streampublic class DelegateReadStream<T>
extends java.lang.Object
implements io.vertx.core.streams.ReadStream<T>
| Modifier and Type | Field and Description |
|---|---|
protected io.vertx.core.streams.ReadStream<T> |
delegate |
| Constructor and Description |
|---|
DelegateReadStream(io.vertx.core.streams.ReadStream<T> delegate)
Constructs a new read stream
|
| Modifier and Type | Method and Description |
|---|---|
io.vertx.core.streams.ReadStream<T> |
endHandler(io.vertx.core.Handler<java.lang.Void> endHandler) |
io.vertx.core.streams.ReadStream<T> |
exceptionHandler(io.vertx.core.Handler<java.lang.Throwable> handler) |
io.vertx.core.streams.ReadStream<T> |
handler(io.vertx.core.Handler<T> handler) |
io.vertx.core.streams.ReadStream<T> |
pause() |
io.vertx.core.streams.ReadStream<T> |
resume() |
protected final io.vertx.core.streams.ReadStream<T> delegate
public DelegateReadStream(io.vertx.core.streams.ReadStream<T> delegate)
delegate - the stream to delegate topublic io.vertx.core.streams.ReadStream<T> exceptionHandler(io.vertx.core.Handler<java.lang.Throwable> handler)
exceptionHandler in interface io.vertx.core.streams.ReadStream<T>exceptionHandler in interface io.vertx.core.streams.StreamBasepublic io.vertx.core.streams.ReadStream<T> handler(io.vertx.core.Handler<T> handler)
handler in interface io.vertx.core.streams.ReadStream<T>public io.vertx.core.streams.ReadStream<T> pause()
pause in interface io.vertx.core.streams.ReadStream<T>public io.vertx.core.streams.ReadStream<T> resume()
resume in interface io.vertx.core.streams.ReadStream<T>