Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Latest commit

 

History

History
15 lines (11 loc) · 677 Bytes

CHANGE_LOG.md

File metadata and controls

15 lines (11 loc) · 677 Bytes

CHANGE LOG

0.3.7

  1. Bug fix on YieldIterator that caused thread to block forever if #hasNext() was called again times it returned false.

0.3.6

  1. Added InputStreamSupplier#forInputStream( in ) which will parse the given InputStream to determine the encoding and return a single use InputStreamSupplier instance whose get() call can only be called once.

0.3.5

  1. changed collection of cachedSuppliers from ArrayList to ConcurrentLinkedDeque so we can safely manipulate group concurrently.
  2. added CachedSupplier#ofInitializer() methods which take Suppliers and return CachedSupplier<Void> so clients don't have to make Suppliers that return null.