Duration: 16 minutes
Summary: In this video, we will discuss more of Reactive Extensions features. We will talk a bit about the Scheduler class and see what type of threads we can run the method on. Then we will discuss an overloaded version of Subscribe. With the Scheduler class, we can see that we can run the method on a NewThread, CurrentThread, or ThreadPool. We will change the values in the Scheduler class and see the impact on the code. Then, we will work with the Subscribe method by passing to it three parameters: one for OnNext (the method that needs to be called the process every item in the sequence), OnError (the method that gets called when an exception occurs), and OnCompleted (the method that gets called when we are done with the sequence).
Methodology of the development of example: Good coding standard and simplified design to illustrate the key points.
Technology Used: Reactive Extensions and Visual Studio 2010
Keyword: Reactive Extensions , Visual Studio 2010, Subscribe, OnNext, OnCompletion, OnError, Substring, ToObservable.