TNX.Reactive 2.2.5

dotnet add package TNX.Reactive --version 2.2.5
NuGet\Install-Package TNX.Reactive -Version 2.2.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TNX.Reactive" Version="2.2.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TNX.Reactive --version 2.2.5
#r "nuget: TNX.Reactive, 2.2.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TNX.Reactive as a Cake Addin
#addin nuget:?package=TNX.Reactive&version=2.2.5

// Install TNX.Reactive as a Cake Tool
#tool nuget:?package=TNX.Reactive&version=2.2.5

[.NET 4.6.1+]

- DisposableObservable: a class for creating Observable sequences with TPL easily as Observable.Create
- [IObservable].Serialize: wrap all subscriptions into a single ISubject against the sourcing observable
- [IObservable].AsAsync: execute all functions on TPL
- [IObservable].Fork: add another subscription to the observable creating a new child observable stream
- [IObservable].Where(filter, elseObservable): apply the where in the usual way, and generate an Else observable to continue work in the other case
- [IObservable].ToJson: serialize in Json all values
- [IObservable].ToCSV: serialize in CSV columns all values (configurable delimiter)
- [IObservable].OnLastOrDefault: do something when observable completes

- ObservableStreamReader: route binary data from a Stream to subscribers

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.5 857 1/31/2019
2.2.4 666 1/31/2019
2.2.3 671 1/31/2019
2.2.2 666 1/31/2019
2.1.1 642 1/31/2019
2.1.0 669 1/30/2019
2.1.0-beta 475 1/30/2019
2.0.0 745 12/18/2018
2.0.0-beta2 537 12/13/2018
2.0.0-beta1 555 12/13/2018
1.0.1 1,003 8/6/2016
1.0.0 900 8/6/2016

- FIX and refactory