reactive framework

6
Introduction to Reactive Extensions in .NET [email protected]

Upload: abhigad

Post on 29-Nov-2014

537 views

Category:

Documents


2 download

DESCRIPTION

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

TRANSCRIPT

Page 1: Reactive Framework

Introduction to Reactive Extensions in .NET

[email protected]

Page 2: Reactive Framework

[email protected]

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

Page 3: Reactive Framework

[email protected]

Introduction to Reactive Extensions in .NET

Page 4: Reactive Framework

[email protected]

From Bart’s presentation

Page 5: Reactive Framework

[email protected]

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

Page 6: Reactive Framework

[email protected]

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

Introduction to Reactive Extensions in .NET