reactive framework

Post on 29-Nov-2014

537 Views

Category:

Documents

2 Downloads

Preview:

Click to see full reader

DESCRIPTION

This presentation is based on material collected from conference, MSDN, Channel9

TRANSCRIPT

Introduction to Reactive Extensions in .NET

Abhijit.Gadkari@Gmail.Com

Abhijit.Gadkari@Gmail.Com

From Bart’s presentation

1. Collections : Array, List, Dictionary, etc. and you can iterate over them via loop, IEnumerable

2. Pull based logic [MoveNext] - Example

Introduction to Reactive Extensions in .NET

Abhijit.Gadkari@Gmail.Com

Introduction to Reactive Extensions in .NET

Abhijit.Gadkari@Gmail.Com

From Bart’s presentation

Abhijit.Gadkari@Gmail.Com

The IObserver<T> and IObservable<T> interfaces provide a generalized mechanism for push-based notification, also known as the observer design pattern.

The IObservable<T> interface represents the class that sends notifications (the provider); the IObserver<T> interface represents the class that receives them (the observer). T represents the class that provides the notification information

From MSDN

Introduction to Reactive Extensions in .NET

Abhijit.Gadkari@Gmail.Com

http://msdn.microsoft.com/en-us/devlabs/ee794896.aspx

Introduction to Reactive Extensions in .NET

top related