This release moves Flow to Swift 3 by default (you can either use earlier versions or the swift2
branch if you want to use Swift 2) and updates the API to conform to the Swift API naming guidelines.
Updated APIs
FlowOperation.performWithCompletionHandler()
is nowperform(completionHandler:)
.FlowOperationCollection.addOperation()
is nowadd(operation:)
.FlowOperationCollection.addOperations()
is nowadd(operations:)
.
New APIs
- You can now pause & resume a
FlowOpeationQueue
using thepaused
property. You can also setpaused
as part of the initializer.