Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 433 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 433 Bytes

swift-threading

swift v3.0.1

Simplified thread marshaling with a custom Swift operator function

For a review of this project, see:

http://ijoshsmith.com/2014/07/05/custom-threading-operator-in-swift/

Custom threading operator serial queue:

{ /* do some task */ } ~> { /* update some UI */}

Custom threading operator concurrent queue:

{ /* do some task */ } ≠> { /* update some UI */}