Last active
December 14, 2015 09:28
-
-
Save bamboo/5064727 to your computer and use it in GitHub Desktop.
naive ServiceStack => ReactiveExtensions mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ObservableServiceClient : IObservableServiceClient | |
{ | |
private readonly string _baseUri; | |
public ObservableServiceClient(string baseUri) | |
{ | |
_baseUri = baseUri; | |
} | |
public IObservable<TResponse> ObserveMany<TResponse>(IReturn<IEnumerable<TResponse>> request) | |
{ | |
return Observable.Start(() => | |
{ | |
var client = new JsonServiceClient(_baseUri); | |
return client.Send(request); | |
}).SelectMany(_ => _); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment