Skip to content

Latest commit

 

History

History
81 lines (50 loc) · 1.64 KB

changelog.md

File metadata and controls

81 lines (50 loc) · 1.64 KB

qloop QLoop

QLoop /'kyoo•loop/ - n - Declarative asynchronous operation loops

Change Log


0.1.7

  • QLAnchor repeater timing (early/late)

0.1.6

  • Swift.Result failures auto-route through error path
  • QLAnchor supports echoing to repeaters, with optional EchoFilters

0.1.5

  • added parameters for including custom dispatch queue when creating segments
  • moved convenience initializers back into main class (out of extension) due to swift compiler SIL bug.

0.1.4

  • updated for swift 5
  • QLoopIteratingResettable separated from QLoopIterating (avoids having to implement empty reset() functions on iterators that never reset.)

0.1.3

  • added bind(segment:) to QLoop
  • fixed dispatch bug in QLParallelSegment

0.1.2

  • QLoop upgrades
    • onFinal is now a thing ( called the same way as onChange, except only on final iteration )
  • QLAnchor upgrades
    • default output and error sent on main thread (can be overriden if necessary)
  • QLParallelSegment upgrades
    • guarantees async dispatch of operations
    • more reliable operation completion handling
  • QLSerialSegment upgrades
    • now can assign dispatch queue
    • guarantees async dispatch of operation

0.1.1

  • renaming and simplified interfaces
  • QLParallelSegment upgrades
    • supports assignment of dispatch queues per operationId
    • thread safety around operation runs
    • operations can now output any type
    • simpler combiner no longer requires intermediate type

0.1.0

  • initial alpha testing release
  • cleaner testing support