Edmondo Pentangelo
Check me out on the web at Edmondo Pentangelo - LinkedIn or at my blog.
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Kim Hamilton and Wes Dyer: Inside .NET Rx and IObservable/IObserver in the BCL (VS 2010)
Aug 04, 2009 at 2:11 PMI guess the implementation of the Observable.Subscribe method that is coming out of Observable.Return just calls OnNext.
So in fact by subscribing you're calling yourself back with the value 1.
Observable.Return<T>(T value) = new IObservable { Subscribe(observer) = observer.OnNext(value) }Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx)
Jul 29, 2009 at 4:30 AMIs RxLinq part of the Microsoft Tesla long term initiative ?
Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx)
Jul 22, 2009 at 4:15 PMJust for the fun of it,
I've added an F# implementation of SelectMany and Select for IObservable in F#.
http://reactivelinq.codeplex.com/
holoed
http://fsharpcode.blogspot.com/
Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx)
Jul 13, 2009 at 5:19 PMVery beautiful and simple.
I was so impressed by the simplicity of it all that I tried to do a sample implementation in C#.
Did I get it right?
http://reactivelinq.codeplex.com