Rx.NET in Action

This document was uploaded by one of our users. The uploader already confirmed that they had the permission to publish it. If you are author/publisher or own the copyright of this documents, please report to us by using this DMCA report form.

Simply click on the Download Book button.

Yes, Book downloads on Ebookily are 100% Free.

Sometimes the book is free on Amazon As well, so go ahead and hit "Search on Amazon"

Rx.NET in Action teaches developers how to build event-driven applications using the Rx library. Starting with an overview of the design and architecture of Rx-based reactive applications, you'll get hands-on with in-depth code examples to discover firsthand how to exploit the rich query capabilities that Rx provides and the Rx concurrency model that allows you to control both the asynchronicity of your code and the processing of event handlers. You'll also learn about consuming event streams, using schedulers to manage time, and working with Rx operators to filter, transform, and group events.

Author(s): Tamir Dresher
Publisher: Manning Publications
Year: 2017

Language: English

Table of Contents

PART 1 - GETTING STARTED WITH REACTIVE EXTENSIONS
Reactive programming
Hello, Rx
Functional thinking in C#
PART 2 - CORE IDEAS
Creating observable sequences
Creating observables from .NET asynchronous types
Controlling the observer-observable relationship
Controlling the observable temperature
Working with basic query operators
Partitioning and combining observables
Working with Rx concurrency and synchronization
Error handling and recovery
APPENDIXES
Writing asynchronous code in .NET
The Rx Disposables library
Testing Rx queries and operators