RX: Best approach to async download a list of something from a WCF-service?
问题 The result Im after is a list (WPF) of items that is populated one at a time async from a web service (WCF). I figured RX could be a good option for this? My web service method is returning an array of strings (for now) and at the client-side Im using: var list = Observable.FromAsyncPattern<string[]>(client.BeginList, client.EndList); But now what? Im not familiar with RX at all and I feel very lost. Anyhow I guess my web service has to stream the list instead of sending it in a chunk if I