TNX.Reactive
2.2.5
dotnet add package TNX.Reactive --version 2.2.5
NuGet\Install-Package TNX.Reactive -Version 2.2.5
<PackageReference Include="TNX.Reactive" Version="2.2.5" />
paket add TNX.Reactive --version 2.2.5
#r "nuget: TNX.Reactive, 2.2.5"
// 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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- Newtonsoft.Json (>= 10.0.3)
- System.Reactive (>= 4.1.2)
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 | 901 | 1/31/2019 |
2.2.4 | 695 | 1/31/2019 |
2.2.3 | 698 | 1/31/2019 |
2.2.2 | 692 | 1/31/2019 |
2.1.1 | 664 | 1/31/2019 |
2.1.0 | 690 | 1/30/2019 |
2.1.0-beta | 493 | 1/30/2019 |
2.0.0 | 775 | 12/18/2018 |
2.0.0-beta2 | 565 | 12/13/2018 |
2.0.0-beta1 | 572 | 12/13/2018 |
1.0.1 | 1,029 | 8/6/2016 |
1.0.0 | 921 | 8/6/2016 |
- FIX and refactory