Skip to content

Releases: cloudonix/vertx-java.io

5.0.0

Choose a tag to compare

@guss77 guss77 released this 11 Feb 14:22

Target the new Vert.x 5.x API

1.4.1

Choose a tag to compare

@guss77 guss77 released this 11 Feb 14:21

bug fix

Release 1.4.0

Choose a tag to compare

@guss77 guss77 released this 14 Aug 14:49
  • 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

Choose a tag to compare

@guss77 guss77 released this 29 Jan 16:07
  • Fixed issue #3 - added implementation of InputStream.close() to WriteToInputStream

Release 1.2.1

Choose a tag to compare

@guss77 guss77 released this 29 Jan 15:53
  • Fixed a few cases where a NullPointerException may be thrown in some edge use cases.

Release 1.2.0

Choose a tag to compare

@guss77 guss77 released this 29 Jan 15:51
  • 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

Choose a tag to compare

@guss77 guss77 released this 15 Feb 16:14

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

Release 1.0.0

Choose a tag to compare

@guss77 guss77 released this 01 Aug 11:27

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