EventStreamLib 1.0.7
dotnet add package EventStreamLib --version 1.0.7
NuGet\Install-Package EventStreamLib -Version 1.0.7
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="EventStreamLib" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EventStreamLib" Version="1.0.7" />
<PackageReference Include="EventStreamLib" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EventStreamLib --version 1.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EventStreamLib, 1.0.7"
#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.
#addin nuget:?package=EventStreamLib&version=1.0.7
#tool nuget:?package=EventStreamLib&version=1.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EventStream
EventStream is a distributed, event-driven library built with Redis for .NET 8.0.
It enables seamless event consumption and processing in a distributed system, utilizing Redis for real-time event handling. Ideal for projects requiring scalable and efficient event-driven architectures.
Features
- Event-Based Architecture: Efficiently consume and process events in real-time.
- Redis Integration: Leverages Redis for reliable and high-performance event streaming.
- Background Worker Support: Handles events through workers running in the background for seamless processing.
- Scalable and Distributed: Built for distributed systems to scale with ease.
- Multiple Consumer Support: One event can be consumed by multiple consumers in parallel.
- Retry Mechanism with Dead Letter Queue (DLQ): In case of failure during message publish, the message is stored in a Dead Letter Queue and a background service reattempts publishing the message. This ensures that no event is lost and can be retried later.
Installation
You can install EventStream via NuGet Package Manager:
Injection
// injection
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddStreamBus(AssemblyReference.Assembly);
var app = builder.Build();
app.Run();
Example Using
// publish method
public class ExampleService(IStreamService _streamService)
{
public async void SendEventAsync()
{
await _streamService.PublishEventAsync(new ExampleStreamEvent("data"), "eventStreamApiPublisher",40);
}
}
// json file
"StreamConfigs": {
"StreamKey": "eventStreamApiPublisher",
"GroupName": "group-name",
"ConsumerName": "onsumer-name"
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
- StackExchange.Redis (>= 2.8.16)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release with basic Redis event streaming support.