2015-06-11

Asynchronous enumerations - again

Almost 2 years ago I wrote about this problem with accessing data from Azure and returning it in a LINQ friendly way. Well not long ago the discussion came up again only this time it was in regard to access data in a Cassandra cluster.

Interestingly enough with new colleagues and similar discussions we once again came to the same conclusion as before... You should read the original and decide what you prefer; Task<IEnumerable<T>>, IEnumerable<Task<T>> or IObservable<T>. What is your favorite?

No comments:

Post a Comment