Sunday, 8 September 2013

How implement go style channels (CSP) with objective-c?

How implement go style channels (CSP) with objective-c?

I wonder how create a CSP library for obj-c, that work like Go's
channels/goroutines but with idiomatic obj-c (and less boilerplate than
actual ways).
In other languages with native courutines and/or generators is possible to
model it easily, but I don't grasp how do the same with the several ways
of do concurrent programing in obj-c (plus, the idea is have "cheap"
threads).
Any hint about what I need to do?

No comments:

Post a Comment