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(io.vertx.core.Handler<Void> handler)
Set a drain handler on the stream.
|
io.reactivex.rxjava3.core.Completable |
end()
Same as
end() but with an handler called when the operation completes |
io.reactivex.rxjava3.core.Completable |
end(T data)
Same as but with an
handler called when the operation completes |
WriteStream<T> |
exceptionHandler(io.vertx.core.Handler<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) |
io.reactivex.rxjava3.core.Completable |
rxEnd()
Same as
end() but with an handler called when the operation completes |
io.reactivex.rxjava3.core.Completable |
rxEnd(T data)
Same as but with an
handler called when the operation completes |
io.reactivex.rxjava3.core.Completable |
rxWrite(T data)
Same as but with an
handler called when the operation completes |
WriteStream<T> |
setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue to
maxSize. |
io.reactivex.rxjava3.core.Completable |
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(io.vertx.core.Handler<Throwable> handler)
exceptionHandler in interface StreamBasehandler - the exception handlerio.reactivex.rxjava3.core.Completable write(T data)
handler called when the operation completesdata - io.reactivex.rxjava3.core.Completable rxWrite(T data)
handler called when the operation completesdata - io.reactivex.rxjava3.core.Completable end()
end() but with an handler called when the operation completesio.reactivex.rxjava3.core.Completable rxEnd()
end() but with an handler called when the operation completesio.reactivex.rxjava3.core.Completable end(T data)
handler called when the operation completesdata - io.reactivex.rxjava3.core.Completable rxEnd(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
Pipe to provide flow control.
The value is defined by the implementation of the stream, e.g in bytes for a
NetSocket, 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)true if write queue is fullWriteStream<T> drainHandler(io.vertx.core.Handler<Void> handler)
Pipe 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 © 2022 Eclipse. All rights reserved.