Becoming an Rx Pusher on WP7Jim WooleyConsultant
CodeStock is proudly partnered with:RecruitWise and Staff with Excellence - www.recruitwise.jobsSend instant feedback on this session via Twitter:Send a direct message with the room number to @CodeStockd codestock 503 This session is great!For more information on sending feedback using Twitter while at CodeStock, please see the “CodeStock README” in your CodeStock guide.
The Hardest Problems Solved By the Best Engineers CADRE5
Reactive Framework“Rx is a library for composingasynchronousandevent-based programs using observable collections.”
Observable Collection - Common Uses
Flavors of RxJavaScript
Pulling with EnumerablesFalsevar query = from candy in bagOfCandies            where candy.HasNuts            group candy by candy.Name into GroupedCandies            select new {Name = GroupedCandies.Key,                         CandyCount = GroupedCandies.Count()};foreach (var aggregate in query)Move NextMove NextMove NextMove Next
IEnumerator vs. IObserverpublic interface IEnumerator{   object Current { get; }   bool MoveNext();   void Reset();}Blockingpublic interface IObserver<T>{    void OnCompleted();    void OnError(Exception exception);    void OnNext(T value);}
Pushing with Observablesvar query = from candy in bagOfCandies            where candy.HasNuts            group candy by candy.Name into GroupedCandies            select new {Name = GroupedCandies.Key,                         CandyCount = GroupedCandies.Count()};query.Subscribe(group => DoSomething(group)); OnCompletedOnNextOnNextOnNextOnNextSubscribeOnNext
Moving from Enumerable to Observabledemo
Rx Interfaces
Composing with Eventsdemo
Observable EventsFirst Class ObjectsDisposableSupports DI/IOCMockable
Asynchronous Service RequestsThrottleRandomizer serviceBeginRollDieIObservable<int>UI Thread
Asynchronous Servicesdemo
Further InformationRx Data Developer Center: http://msdn.microsoft.com/data/gg577609Reactive Extensions Team Blog: http://blogs.msdn.com/rxteamChannel9: http://channel9.msdn.com/Tags/Rx
Call to ActionGet the bitsShipped in Windows Phone 7 ROM
Install with NuGet

More Related Content

PPTX
Dynamic programming in a statically typed world
PPTX
Directorio
PPTX
Ssdt wooley
PPTX
Windows 8 as an Application Integration Hub
DOCX
Practica mid manager emapa
PDF
Oscar Engineering part 1
PPTX
PDF
Introduction to Meteor - revised edition
Dynamic programming in a statically typed world
Directorio
Ssdt wooley
Windows 8 as an Application Integration Hub
Practica mid manager emapa
Oscar Engineering part 1
Introduction to Meteor - revised edition

Similar to Rx forwp7 (20)

PDF
Testing Web Applications
PDF
The curious Life of JavaScript - Talk at SI-SE 2015
PDF
The Little Unicorn That Could
PDF
Apache Cassandra Certification
XLS
Lt web quiz_answer
KEY
Repensando o Desenvolvimento Web com Ruby on Rails
PDF
Reverse Engineering Malicious Javascript
PDF
Modularize JavaScript with RequireJS
PDF
0900 learning-react
PPTX
PDF
Need 4 Speed FI
PDF
react.pdf
PDF
From Backbone to Ember and Back(bone) Again
PPTX
Real World Single Page App - A Knockout Case Study
PPTX
React Session 1.pptx
DOCX
Javascript viva questions
PDF
SFScon 21 - Davide Montesin - Typescript vs. Java
PDF
655221243123332131-Complete-MERN-stack.pdf
PDF
React performance
PDF
Introduction to Node.js
Testing Web Applications
The curious Life of JavaScript - Talk at SI-SE 2015
The Little Unicorn That Could
Apache Cassandra Certification
Lt web quiz_answer
Repensando o Desenvolvimento Web com Ruby on Rails
Reverse Engineering Malicious Javascript
Modularize JavaScript with RequireJS
0900 learning-react
Need 4 Speed FI
react.pdf
From Backbone to Ember and Back(bone) Again
Real World Single Page App - A Knockout Case Study
React Session 1.pptx
Javascript viva questions
SFScon 21 - Davide Montesin - Typescript vs. Java
655221243123332131-Complete-MERN-stack.pdf
React performance
Introduction to Node.js
Ad

Recently uploaded (20)

DOCX
NFL Dublin Vikings Announce Strategy for Jordan Addison Prior to Final Tune-U...
PDF
FIFA World Cup Guardiola Backs Grealish for England’s FIFA 2026 Squad.pdf
DOCX
FIFA World Cup Tickets Los Angeles Set to Shine with Snoop Dogg as Community ...
DOCX
FIFA World Cup Tickets: Messi included in Argentina squad for FIFA 2026 CONME...
PDF
2025 AASM Schedule of Oral Presentation(0818)
DOCX
FIFA World Cup 2026 Poland’s Road to Qualification with Lewandowski.docx
PDF
FIFA World Cup Tickets Leon Avdullahu must choose between Kosovo and Switzerl...
PDF
aasm 8/22-23 Schedule of Oral Presentation.pdf
PDF
World Cup Messi Leads Argentina toward FIFA 2026 Glory.pdf
PDF
Transforming Capital into Catalysts – Capri’s Next Play in Sports.pdf
PDF
Sports & Entertainment Streaming – Live Matches, Local Channels
PDF
2025 AASM Schedule of Poster Presentation(0818)
DOCX
FIFA 2026 Public Art Initiatives Grow as Seattle Prepares for World Cup.docx
DOCX
Ancelotti Backs Fresh Brazil Squad for World Cup Qualifiers.docx
DOCX
Mexico Adds Paraguay to Exciting FIFA 2026 Preparations.docx
DOCX
World Cup Lawrence to Boost Hotel Tax for FIFA 2026 Tourism Surge.docx
DOCX
World Cup Tickets Uganda confirms stadium and date for Somalia fixture.docx
PDF
benefits of playing football Physical Health
PDF
Youth Basketball Summer Camp LA – Building Future Stars
DOCX
World Cup Lawrence to Boost Hotel Tax for FIFA 2026 Tourism Surge.docx
NFL Dublin Vikings Announce Strategy for Jordan Addison Prior to Final Tune-U...
FIFA World Cup Guardiola Backs Grealish for England’s FIFA 2026 Squad.pdf
FIFA World Cup Tickets Los Angeles Set to Shine with Snoop Dogg as Community ...
FIFA World Cup Tickets: Messi included in Argentina squad for FIFA 2026 CONME...
2025 AASM Schedule of Oral Presentation(0818)
FIFA World Cup 2026 Poland’s Road to Qualification with Lewandowski.docx
FIFA World Cup Tickets Leon Avdullahu must choose between Kosovo and Switzerl...
aasm 8/22-23 Schedule of Oral Presentation.pdf
World Cup Messi Leads Argentina toward FIFA 2026 Glory.pdf
Transforming Capital into Catalysts – Capri’s Next Play in Sports.pdf
Sports & Entertainment Streaming – Live Matches, Local Channels
2025 AASM Schedule of Poster Presentation(0818)
FIFA 2026 Public Art Initiatives Grow as Seattle Prepares for World Cup.docx
Ancelotti Backs Fresh Brazil Squad for World Cup Qualifiers.docx
Mexico Adds Paraguay to Exciting FIFA 2026 Preparations.docx
World Cup Lawrence to Boost Hotel Tax for FIFA 2026 Tourism Surge.docx
World Cup Tickets Uganda confirms stadium and date for Somalia fixture.docx
benefits of playing football Physical Health
Youth Basketball Summer Camp LA – Building Future Stars
World Cup Lawrence to Boost Hotel Tax for FIFA 2026 Tourism Surge.docx
Ad

Rx forwp7