public interface WriteStream<T> extends StreamBase
Any class that implements this interface can be used by a Pipe to pipe data from a ReadStream
to it.
original non RX-ified interface using Vert.x codegen.| Modifier and Type | Method and Description |
|---|---|
WriteStream<T> |
drainHandler(Consumer<Void> handler)
Set a drain handler on the stream.
|
CompletionStage<Void> |
end()
Same as
end() but with an handler called when the operation completes |
CompletionStage<Void> |
end(T data)
Same as but with an
handler called when the operation completes |
WriteStream<T> |
exceptionHandler(Consumer<Throwable> handler)
Set an exception handler on the write stream.
|
io.vertx.core.streams.WriteStream |
getDelegate() |
static <T> WriteStream<T> |
newInstance(io.vertx.core.streams.WriteStream arg) |
static <T> WriteStream<T> |
newInstance(io.vertx.core.streams.WriteStream arg,
TypeArg<T> __typeArg_T) |
WriteStream<T> |
setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue to
maxSize. |
CompletionStage<Void> |
write(T data)
Same as but with an
handler called when the operation completes |
boolean |
writeQueueFull()
This will return
true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int) |
newInstanceio.vertx.core.streams.WriteStream getDelegate()
getDelegate in interface StreamBaseWriteStream<T> exceptionHandler(Consumer<Throwable> handler)
exceptionHandler in interface StreamBasehandler - the exception handlerCompletionStage<Void> write(T data)
handler called when the operation completesdata - CompletionStage<Void> end()
end() but with an handler called when the operation completesCompletionStage<Void> end(T data)
handler called when the operation completesdata - WriteStream<T> setWriteQueueMaxSize(int maxSize)
maxSize. You will still be able to write to the stream even
if there is more than maxSize items in the write queue. This is used as an indicator by classes such as
Pump to provide flow control.
The value is defined by the implementation of the stream, e.g in bytes for a
NetSocket, the number of Message for a
MessageProducer, etc...maxSize - the max size of the write streamboolean writeQueueFull()
true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int)WriteStream<T> drainHandler(Consumer<Void> handler)
Pump for an example of this being used.
The stream implementation defines when the drain handler, for example it could be when the queue size has been
reduced to maxSize / 2.handler - the handlerstatic <T> WriteStream<T> newInstance(io.vertx.core.streams.WriteStream arg)
static <T> WriteStream<T> newInstance(io.vertx.core.streams.WriteStream arg, TypeArg<T> __typeArg_T)
Copyright © 2019 SmallRye. All rights reserved.