public interface WriteStream<T> extends StreamBase
Any class that implements this interface can be used by a Pump
to pump data from a ReadStream
to it.
Modifier and Type | Method and Description |
---|---|
WriteStream<T> |
drainHandler(Handler<Void> handler)
Set a drain handler on the stream.
|
void |
end()
Ends the stream.
|
default void |
end(T t)
Same as
end() but writes some data to the stream before ending. |
WriteStream<T> |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the write stream.
|
WriteStream<T> |
setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue to
maxSize . |
WriteStream<T> |
write(T data)
Write some data to the stream.
|
boolean |
writeQueueFull()
This will return
true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int) |
WriteStream<T> exceptionHandler(Handler<Throwable> handler)
exceptionHandler
in interface StreamBase
handler
- the exception handlerWriteStream<T> write(T data)
writeQueueFull()
method before writing. This is done automatically if using a Pump
.data
- the data to writevoid end()
Once the stream has ended, it cannot be used any more.
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(Handler<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 handlerCopyright © 2018 Eclipse. All rights reserved.