Releases: cloudonix/vertx-java.io
Releases · cloudonix/vertx-java.io
Release 1.4.0
Release 1.3.0
- Fixed issue #3 - added implementation of
InputStream.close()
toWriteToInputStream
Release 1.2.1
- Fixed a few cases where a
NullPointerException
may be thrown in some edge use cases.
Release 1.2.0
- Allow better control of memory usage by limiting buffer chunk sizes:
TheWriteStream.setWriteQueueMaxSize()
method to set the write queue size may be of limited utility when we have no control of the block size of theBuffer
objects that are submitted to theWriteStream
. To solve this, this version adds aWriteToInputStream.setMaxChunkSize(int)
method that allows setting a maximum size for the buffers in the queue. With that limit set, incoming buffers will be split if they are larger than the specified size, so that the maximum memory use of the stream should no exceedQueueMaxSize
*MaxChunkSize
(excluding overhead).
Release 1.1.0
Fixed a bunch of bugs, including a serious stack overflow issue.
Release 1.0.0
First public release with support for connected ReadStream
/WriteStream
to OutputStream
/InputStream