InFlux 1.6.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package InFlux --version 1.6.0
NuGet\Install-Package InFlux -Version 1.6.0
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="InFlux" Version="1.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add InFlux --version 1.6.0
#r "nuget: InFlux, 1.6.0"
#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 InFlux as a Cake Addin
#addin nuget:?package=InFlux&version=1.6.0

// Install InFlux as a Cake Tool
#tool nuget:?package=InFlux&version=1.6.0

Common architechtural code for building observable models with predictable event handling.
Auto-setup of known property and field types so a generalised 'entity changed' event fires too.
One-off subscriptions, and callbacks for completed events are supported.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on InFlux:

Package Downloads
BinaryDocumentDb

A low level blob database file, with a repository that acts as an index of available blobs. There has been a lot of thought around trying to avoid writing changes to the file on disk because solid state drives have a finite lifecycle. Therefore the underlying code seeks to re-use empty space, and only mark areas as free-space by altering a single byte on disk. Given this holds a file stream open, there can only be one instance of the repository, which you can consider the single source of truth. This repository raises events as file alterations complete, using the InFlux method of weak referenced events.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.1 652 11/8/2022
1.7.0 310 11/6/2022
1.6.1 305 11/8/2022
1.6.0 383 10/19/2022
1.5.0 809 9/13/2022
1.1.6 378 6/14/2022
1.1.0 420 2/9/2022

Added SimpleQueuedEvent where an event payload only contains new data.
Fixed bug found in unsubscribing from QueuedEvents<T> by providing the Action subscribed with.