Skip to content

Releases: cloudonix/vertx-java.io

Release 1.4.0

14 Aug 14:49
Compare
Choose a tag to compare
  • Changed the API for WriteToInputStream.wrap(OutputStream) to allow the caller to wait for the transfer to complete, otherwise there's no way to know when it is safe to close the input stream.
  • Fixed issue #4 , thanks to PR by @c3-robin .

Release 1.3.0

29 Jan 16:07
Compare
Choose a tag to compare
  • Fixed issue #3 - added implementation of InputStream.close() to WriteToInputStream

Release 1.2.1

29 Jan 15:53
Compare
Choose a tag to compare
  • Fixed a few cases where a NullPointerException may be thrown in some edge use cases.

Release 1.2.0

29 Jan 15:51
Compare
Choose a tag to compare
  • Allow better control of memory usage by limiting buffer chunk sizes:
    The WriteStream.setWriteQueueMaxSize() method to set the write queue size may be of limited utility when we have no control of the block size of the Buffer objects that are submitted to the WriteStream. To solve this, this version adds a WriteToInputStream.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 exceed QueueMaxSize * MaxChunkSize (excluding overhead).

Release 1.1.0

15 Feb 16:14
Compare
Choose a tag to compare

Fixed a bunch of bugs, including a serious stack overflow issue.

Release 1.0.0

01 Aug 11:27
Compare
Choose a tag to compare

First public release with support for connected ReadStream/WriteStream to OutputStream/InputStream