AspNetCore.SignalR.EventStream
1.0.0
dotnet add package AspNetCore.SignalR.EventStream --version 1.0.0
NuGet\Install-Package AspNetCore.SignalR.EventStream -Version 1.0.0
<PackageReference Include="AspNetCore.SignalR.EventStream" Version="1.0.0" />
paket add AspNetCore.SignalR.EventStream --version 1.0.0
#r "nuget: AspNetCore.SignalR.EventStream, 1.0.0"
// Install AspNetCore.SignalR.EventStream as a Cake Addin #addin nuget:?package=AspNetCore.SignalR.EventStream&version=1.0.0 // Install AspNetCore.SignalR.EventStream as a Cake Tool #tool nuget:?package=AspNetCore.SignalR.EventStream&version=1.0.0
AspNetCore.SignalR.EventStream
.Net Event Sourcing framework using SignalR web sockets
Event sourcing stores the state of a database object as a sequence of events � essentially a new event for each time the object changed state, from the beginning of the object�s existence.
Read more on Event Sourcing here.
SignalR uses web sockets for real-time, 2-way communication between Client & Server.
Read more on SignalR:
The framework implements Event Sourcing using SignalR web sockets as the communication protocol.
Advantages of using SignalR web sockets:
- Browser based web app Clients can easily communicate with the Server. Besides, normal apps.
- Web sockets only need an internet connection for Client-Server communication. So, no special network infrastructure is needed.
- You can leverage the built in security.
- SignalR is an industry standard. With client libraries available for all platforms like Javascript, Java, Python, Mac OS, Windows etc.
Framework
This framework allows you to build your own Event Stream Server.
Features
- SignalR web sockets interface with client.
- Multiple databases supported.
- MS Sqlite (out of the box)
- MS Sql Server
- Azure CosmosDb
- Http endpoints to administer the Server.
- Ability to replay events in a stream.
- Implement your own security (as you like) in the Authorization hooks.
- Implement your own logging (as you like).
And, from you Client application
you can
- Publish Events to a stream
- Subscribe to a stream
- Unsubscribe from a stream
using SignalR client libraries for .Net, Java, Javascript etc.
Documentation
https://github.com/VeritasSoftware/AspNetCore.SignalR.EventStream
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. 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 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. |
-
net5.0
- Linq.Fluent.PredicateBuilder (>= 1.0.1)
- Microsoft.AspNetCore.SignalR.Client (>= 5.0.17)
- Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (>= 5.0.17)
- Microsoft.EntityFrameworkCore (>= 5.0.17)
- Microsoft.EntityFrameworkCore.Cosmos (>= 5.0.17)
- Microsoft.EntityFrameworkCore.Sqlite (>= 5.0.17)
- Microsoft.EntityFrameworkCore.SqlServer (>= 5.0.17)
-
net6.0
- Linq.Fluent.PredicateBuilder (>= 1.0.1)
- Microsoft.AspNetCore.SignalR.Client (>= 6.0.7)
- Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (>= 6.0.7)
- Microsoft.EntityFrameworkCore (>= 6.0.7)
- Microsoft.EntityFrameworkCore.Cosmos (>= 6.0.7)
- Microsoft.EntityFrameworkCore.Sqlite (>= 6.0.7)
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.7)
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 |
---|---|---|
1.0.0 | 736 | 9/12/2022 |
Initial release