AppLabs.EventBus
1.0.0
dotnet add package AppLabs.EventBus --version 1.0.0
NuGet\Install-Package AppLabs.EventBus -Version 1.0.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="AppLabs.EventBus" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AppLabs.EventBus --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AppLabs.EventBus, 1.0.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 AppLabs.EventBus as a Cake Addin #addin nuget:?package=AppLabs.EventBus&version=1.0.0 // Install AppLabs.EventBus as a Cake Tool #tool nuget:?package=AppLabs.EventBus&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AppLabs Event Bus
Implements a simple event bus for use in NET applications.
Usage
Creating an event bus
To create an event bus, you can use the EventBus
class.
using AppLabs.EventBus;
var eventBus = new EventBus();
Subscribing to events
To subscribe to an event, you can use the Subscribe
method.
using AppLabs.EventBus;
//Event inherited from BaseEvent required
public class DbEvent : BaseEvent
{
public string Query { get; set; } = string.Empty;
}
var eventBus = new EventBus();
var subsToken = _eventbus.Subscribe<DbEvent>( async (DbEvent sender, EventArgs e) =>
{
//Do something with the event
Console.WriteLine(sender.Query);
});
Publishing events
To publish an event, you can use the Publish
method.
//Suppose we have a DbEvent and we want to publish it
varevt0 = new DbEvent
{
Query = "SELECT * from table"
};
//EventArgs will be a custom EventArgs
_eventbus.Publish(evt0, new EventArgs();
Unsubscribing from events
To unsubscribe from an event, you can use the Unsubscribe
method.
//subsToken is the token returned by the Subscribe method
eventBus.Unsubscribe(subsToken);
Product | Versions 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 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.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 |
---|---|---|
1.0.0 | 232 | 1/29/2023 |