Eventium 0.3.9

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

// Install Eventium as a Cake Tool
#tool nuget:?package=Eventium&version=0.3.9

Eventium

Eventium is a C# event loop with live and replay functionality for time-based events. Event types include sockets, files, and timers.

To facilitate better performance, Eventium includes Linux-based event polling for improved latency. This functionality relies on epoll. kqueue support does not exist yet.

Event dispatching can be handled in either single-threaded mode or multi-threaded mode. Single-threaded dispatching is traditional with one thread polling and processing events serially. Multi-threaded mode distributes events across several dispatchers running concurrently on separate threads.

WebSocket support is included facilitating polling for data on WebSocket feeds.

An example snippet that prints data from a WebSocket feed:

var logger = new ConsoleLogger();
var engine = new LiveEventEngine();
engine.AddWebSocket("wss://twiggie.nuradius.com", msg => PrintMessage(msg.Data.Span)), subscription: "{\"action\":\"subscribe\"]}");
engine.AddEngineStats(logger, TimeSpan.FromSeconds(15));
engine.SetShutdownTime(DateTime.Now + TimeSpan.FromMinutes(5));
engine.Run();
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.

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
0.3.11 54 6/3/2024
0.3.10 69 6/2/2024
0.3.9 158 9/26/2023
0.3.8 100 9/24/2023
0.3.7 121 9/20/2023
0.3.6 102 9/19/2023
0.3.5 110 9/18/2023
0.3.4 128 9/18/2023
0.3.3 143 8/31/2023
0.3.1 141 8/25/2023
0.3.0 153 8/25/2023
0.2.8 228 2/24/2023
0.2.7 283 1/18/2023
0.2.5 277 1/15/2023
0.2.4 304 1/11/2023
0.2.3 290 1/10/2023
0.2.2 311 1/6/2023
0.2.1 316 1/5/2023
0.2.0 318 1/1/2023
0.1.6 269 12/14/2022
0.1.5 308 12/1/2022
0.1.3 313 11/29/2022
0.1.2 354 11/12/2022
0.1.1 331 11/8/2022