Workleap.DomainEventPropagation.Subscription
0.5.4-preview.1
Prefix Reserved
See the version list below for details.
dotnet add package Workleap.DomainEventPropagation.Subscription --version 0.5.4-preview.1
NuGet\Install-Package Workleap.DomainEventPropagation.Subscription -Version 0.5.4-preview.1
<PackageReference Include="Workleap.DomainEventPropagation.Subscription" Version="0.5.4-preview.1" />
paket add Workleap.DomainEventPropagation.Subscription --version 0.5.4-preview.1
#r "nuget: Workleap.DomainEventPropagation.Subscription, 0.5.4-preview.1"
// Install Workleap.DomainEventPropagation.Subscription as a Cake Addin #addin nuget:?package=Workleap.DomainEventPropagation.Subscription&version=0.5.4-preview.1&prerelease // Install Workleap.DomainEventPropagation.Subscription as a Cake Tool #tool nuget:?package=Workleap.DomainEventPropagation.Subscription&version=0.5.4-preview.1&prerelease
Workleap.DomainEventPropagation
These libraries must be used in conjunction with Azure Event Grid in order to publish and receive domain events. It is meant to be used in a multi-services architecture where each service is responsible for its own data and publishes events to notify other services of changes. Read more about this in the architecture center
Getting started
Limitations
For now, librairies has the following limitations :
- Receiving Cloud Events using push delivery
- Using Event Grid events with Namespace Topics (Microsoft limitation)
- Publishing either Cloud or Event Grid events to multiple topics
- Application Insights telemetry for Cloud Event publishing
- Tracing for Cloud Event publishing
IPublishingDomainEventBehavior
behaviors for pull delivery
Publish domain events
Note that in order to use pull-delivery with Event Grid, you will need to leverage namespace Topic. It's important to know that those topics only support CloudEvent v1.0 schema. More information on namespace topics can be found here
Install the package Workleap.DomainEventPropagation.Publishing in your .NET project that wants to send events to an Event Grid topic. Then, you can use one of the following methods to register the required services.
// Method 1: Automatically bind the options to a well-known configuration section
services.AddEventPropagationPublisher();
// appsetting.json (or any other configuration source)
{
"EventPropagation": {
"Publisher": {
"TopicEndpoint": "<azure_topic_uri>",
"TopicAccessKey": "<secret_value>",
"TopicType": "<custom/namespace>", // Custom if unset
"TopicName": "<azure_namespacetopic_name>" // Mandatory only if topic type = namespace
}
}
}
// Method 2: Automatically bind the options to a well-known configuration section with Azure Identity (RBAC)
services.AddEventPropagationPublisher(options =>
{
options.TokenCredential = new DefaultAzureCredential();
});
// appsetting.json (or any other configuration source)
{
"EventPropagation": {
"Publisher": {
"TopicEndpoint": "<azure_topic_uri>",
"TopicType": "<custom/namespace>", // Custom if unset
"TopicName": "<azure_namespacetopic_name>" // Mandatory only if topic type = namespace
}
}
}
// Method 3: Set options values directly in C#
services.AddEventPropagationPublisher(options =>
{
options.TopicEndpoint = "<azure_topic_uri>";
// Using an access key
options.TopicAccessKey = "<secret_value>";
// Using Azure Identity (RBAC)
options.TokenCredential = new DefaultAzureCredential();
// Topic type, Custom by default
options.TopicType = TopicType.Custom;
// Namespace topic name, mandatory if topic type = namespace
options.TopicName = "<azure_namespacetopic_name>";
});
Note that you can use either an access key or a token credential in order to authenticate to your eventGrid topic, not both.
Then, in order to publish a domain event, you first need to define your domain events using the IDomainEvent
interface.
Decorate the domain event with the [DomainEvent]
attribute, specifying a unique event name.
[DomainEvent("example")]
public class ExampleDomainEvent : IDomainEvent
{
public string Id { get; set; }
}
// Or if you want to specify what schema should be used
[DomainEvent("example", EventSchema.CloudEvent)]
public class ExampleDomainEvent : IDomainEvent
{
public string Id { get; set; }
}
Once your domain events are defined, you can inject and use the IEventPropagationClient
service.
var domainEvent = new ExampleDomainEvent
{
Id = Guid.NewGuid().ToString()
};
await this._eventPropagationClient.PublishDomainEventAsync(domainEvent, CancellationToken.None);
You can specify additional metadata for your domain events to leverage subscription filtering within Azure. This is only supported on domain events that use the CloudEvent schema.
var domainEvent = new ExampleDomainEvent
{
Id = Guid.NewGuid().ToString()
};
await this._eventPropagationClient.PublishDomainEventAsync(domainEvent, x => x.Subject = "<custom_subject>", CancellationToken.None);
Subscribe to domain events with push delivery
Install the package Workleap.DomainEventPropagation.Subscription in your ASP.NET Core project that wants to receive events from Event Grid topics.
You can define your domain event handlers by implementing the IDomainEventHandler<>
interface and then registering them in the service collection later.
public class ExampleDomainEventHandler : IDomainEventHandler<ExampleDomainEvent>
{
public Task HandleDomainEventAsync(ExampleDomainEvent domainEvent, CancellationToken cancellationToken)
{
// Do something with the domain event
return Task.CompletedTask;
}
}
Then, you can use on of the following methods to register the required services and map the webhook endpoint.
// Method 1: Register only selected domain event handlers
services.AddEventPropagationSubscriber()
.AddDomainEventHandler<ExampleDomainEvent, ExampleDomainEventHandler>()
.AddDomainEventHandler<OtherDomainEvent, OtherDomainEventHandler>();
// Method 2: Register all domain event handlers from a given assembly
services.AddEventPropagationSubscriber()
.AddDomainEventHandlers(Assembly.GetExecutingAssembly());
// Register the webhook endpoint in your ASP.NET Core app (startup-based approach)
app.UseEndpoints(builder =>
{
builder.MapEventPropagationEndpoint();
});
// Register the webhook endpoint in your ASP.NET Core app (minimal APIs approach)
app.MapEventPropagationEndpoint();
Securing the webhook endpoint
It is required to expose an ASP.NET Core endpoint in order for Event Grid topics to be able to push events. By default, the registered endpoint will allow anonymous access, but it is possible to secure it as shown below:
// "RequireAuthorization" is a built-in ASP.NET Core method so you can specify any authorization policy you want
app.MapEventPropagationEndpoint().RequireAuthorization();
Now, follow this Microsoft documentation to continue the configuration.
Subscribe to domain events with pull delivery
Install the package Workleap.DomainEventPropagation.Subscription.PullDelivery in your ASP.NET Core project that wants to receive events from Event Grid topics. First, you will need to use one of the following methods to register the required services.
// Method 1: Register to pull delivery and bind the subscription options to the well-known configuration section named EventPropagation:Subscription
services.AddPullDeliverySubscription()
.AddTopicSubscription();
// appsetting.json (or any other configuration source)
{
"EventPropagation": {
"Subscription": {
"TopicEndpoint": "<azure_topic_uri>",
"TopicName": "<namespace_topic_to_listen_to>"
"SubscriptionName": "<subscription_name_under_specified_topic>",
"TopicAccessKey": "<secret_value>", // Can be omitted to use Azure Identity (RBAC)
}
}
}
// Method 2: Register to pull delivery and bind to multiple subscriptions
services.AddPullDeliverySubscription()
.AddTopicSubscription("EventPropagation:TopicSub1")
.AddTopicSubscription("EventPropagation:TopicSub2");
// appsetting.json (or any other configuration source)
{
"EventPropagation": {
"TopicSub1": {
"TopicEndpoint": "<azure_topic_uri>",
"TopicName": "<namespace_topic_to_listen_to>"
"SubscriptionName": "<subscription_name_under_specified_topic>",
"TopicAccessKey": "<secret_value>", // Can be omitted to use Azure Identity (RBAC)
},
"TopicSub2": {
"TopicEndpoint": "<azure_topic_uri>",
"TopicName": "<namespace_topic_to_listen_to>"
"SubscriptionName": "<subscription_name_under_specified_topic>",
"TopicAccessKey": "<secret_value>", // Can be omitted to use Azure Identity (RBAC)
}
}
}
// Method 3: Set options values directly in C#
services.AddPullDeliverySubscription()
.AddTopicSubscription("EventPropagation:TopicSub1", options =>
{
options.TopicEndpoint = "<azure_topic_uri>";
// Namespace topic name
options.TopicName = "<topic_name>";
// Namespace topic subscription name
options.SubscriptionName = "<subscription_name>";
// Using an access key
options.TopicAccessKey = "<secret_value>";
// Using Azure Identity (RBAC)
options.TokenCredential = new DefaultAzureCredential();
})
.AddTopicSubscription("EventPropagation:TopicSub2", options =>
{
// ...
});
Then you can define your domain event handlers by implementing the IDomainEventHandler<>
interface and register them using
// Method 1: Register only selected domain event handlers
services.AddPullDeliverySubscription()
.AddDomainEventHandler<ExampleDomainEvent, ExampleDomainEventHandler>()
.AddDomainEventHandler<OtherDomainEvent, OtherDomainEventHandler>();
// Method 2: Register all domain event handlers from a given assembly
services.AddPullDeliverySubscription()
.AddDomainEventHandlers(Assembly.GetExecutingAssembly());
// Handler sample
public class ExampleDomainEventHandler : IDomainEventHandler<ExampleDomainEvent>
{
public Task HandleDomainEventAsync(ExampleDomainEvent domainEvent, CancellationToken cancellationToken)
{
// Do something with the domain event
return Task.CompletedTask;
}
}
Additional notes
- You may only define one domain event handler per domain event you wish to handle. If you would require more, use the single allowed domain event handler as a facade for multiple operations.
- Domain event handlers must have idempotent behavior (you could execute it multiple times for the same event and the result would always be the same).
- If your domain event types and handlers are in dedicated assemblies, you can reference the Workleap.DomainEventPropagation.Abstractions packages in order to avoid a dependency on third-parties like Azure and Microsoft extensions.
Building, releasing and versioning
The project can be built by running Build.ps1
. It uses Microsoft.CodeAnalysis.PublicApiAnalyzers to help detect public API breaking changes. Use the built-in roslyn analyzer to ensure that public APIs are declared in PublicAPI.Shipped.txt
, and obsolete public APIs in PublicAPI.Unshipped.txt
.
A new preview NuGet package is automatically published on any new commit on the main branch. This means that by completing a pull request, you automatically get a new NuGet package.
When you are ready to officially release a stable NuGet package by following the SemVer guidelines, simply manually create a tag with the format x.y.z
. This will automatically create and publish a NuGet package for this version.
Included Roslyn analyzers
Rule ID | Category | Severity | Description |
---|---|---|---|
WLDEP01 | Usage | Warning | Use DomainEvent attribute on event |
WLDEP02 | Usage | Warning | Use unique event name in attribute |
WLDEP03 | Usage | Warning | Ensure event name follows the naming convention |
To modify the severity of one of these diagnostic rules, you can use a .editorconfig
file. For example:
## Disable analyzer for test files
[**Tests*/**.cs]
dotnet_diagnostic.WLDEP01.severity = none
dotnet_diagnostic.WLDEP02.severity = none
dotnet_diagnostic.WLDEP03.severity = none
To learn more about configuring or suppressing code analysis warnings, refer to this documentation.
License
Copyright © 2023, Workleap This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.
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. |
-
net6.0
- Azure.Messaging.EventGrid (>= 4.21.0)
- OpenTelemetry.Api (>= 1.7.0)
- Workleap.DomainEventPropagation.Abstractions (>= 0.5.4-preview.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Workleap.DomainEventPropagation.Subscription:
Package | Downloads |
---|---|
Workleap.DomainEventPropagation.Subscription.ApplicationInsights
Propagate domain events with Azure |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.1-preview.5 | 28 | 11/17/2024 |
1.1.1-preview.4 | 36 | 10/30/2024 |
1.1.1-preview.3 | 37 | 10/28/2024 |
1.1.1-preview.2 | 36 | 10/28/2024 |
1.1.1-preview.1 | 35 | 10/28/2024 |
1.1.0 | 1,550 | 10/9/2024 |
1.0.2-preview.19 | 40 | 10/9/2024 |
1.0.2-preview.18 | 48 | 10/1/2024 |
1.0.2-preview.17 | 44 | 10/1/2024 |
1.0.2-preview.16 | 45 | 10/1/2024 |
1.0.2-preview.15 | 44 | 10/1/2024 |
1.0.2-preview.14 | 59 | 10/1/2024 |
1.0.2-preview.13 | 34 | 9/20/2024 |
1.0.2-preview.12 | 27 | 9/20/2024 |
1.0.2-preview.11 | 44 | 8/27/2024 |
1.0.2-preview.10 | 45 | 8/27/2024 |
1.0.2-preview.9 | 43 | 8/27/2024 |
1.0.2-preview.7 | 39 | 8/27/2024 |
1.0.2-preview.5 | 38 | 8/27/2024 |
1.0.2-preview.4 | 39 | 8/27/2024 |
1.0.2-preview.3 | 39 | 8/27/2024 |
1.0.2-preview.2 | 42 | 8/27/2024 |
1.0.1 | 1,499 | 8/20/2024 |
1.0.1-preview.2 | 64 | 8/20/2024 |
1.0.1-preview.1 | 65 | 8/16/2024 |
1.0.0 | 272 | 8/15/2024 |
0.6.2-preview.2 | 74 | 8/15/2024 |
0.6.2-preview.1 | 59 | 8/15/2024 |
0.6.1 | 3,931 | 8/15/2024 |
0.6.1-preview.5 | 64 | 8/14/2024 |
0.6.1-preview.4 | 64 | 8/14/2024 |
0.6.1-preview.3 | 57 | 8/12/2024 |
0.6.1-preview.2 | 33 | 8/5/2024 |
0.6.1-preview.1 | 41 | 7/26/2024 |
0.6.0 | 1,535 | 7/18/2024 |
0.5.6-preview.3 | 54 | 7/18/2024 |
0.5.6-preview.2 | 49 | 7/18/2024 |
0.5.6-preview.1 | 50 | 7/18/2024 |
0.5.5-preview.3 | 35 | 7/17/2024 |
0.5.5-preview.2 | 50 | 7/15/2024 |
0.5.4 | 2,037 | 6/19/2024 |
0.5.4-preview.5 | 49 | 6/17/2024 |
0.5.4-preview.4 | 48 | 6/17/2024 |
0.5.4-preview.3 | 48 | 6/14/2024 |
0.5.4-preview.2 | 46 | 6/14/2024 |
0.5.4-preview.1 | 45 | 6/13/2024 |
0.5.3 | 4,097 | 5/21/2024 |
0.5.3-preview.1 | 63 | 5/10/2024 |
0.5.2 | 10,133 | 4/17/2024 |
0.5.2-preview.2 | 68 | 4/12/2024 |
0.5.2-preview.1 | 54 | 4/8/2024 |
0.5.1 | 1,567 | 4/8/2024 |
0.5.1-preview.1 | 56 | 4/8/2024 |
0.4.1-preview.10 | 66 | 4/8/2024 |
0.4.1-preview.9 | 54 | 3/28/2024 |
0.4.1-preview.8 | 59 | 3/26/2024 |
0.4.1-preview.7 | 62 | 3/19/2024 |
0.4.1-preview.6 | 52 | 3/18/2024 |
0.4.1-preview.5 | 60 | 3/8/2024 |
0.4.1-preview.4 | 56 | 3/7/2024 |
0.4.1-preview.3 | 65 | 3/4/2024 |
0.4.1-preview.2 | 59 | 3/4/2024 |
0.4.1-preview.1 | 61 | 2/29/2024 |
0.4.0 | 14,315 | 2/27/2024 |
0.3.1-preview.6 | 64 | 2/26/2024 |
0.3.1-preview.5 | 60 | 2/26/2024 |
0.3.1-preview.4 | 63 | 2/23/2024 |
0.3.1-preview.3 | 61 | 2/16/2024 |
0.3.1-preview.2 | 70 | 2/6/2024 |
0.3.1-preview.1 | 55 | 2/6/2024 |
0.3.0 | 8,478 | 1/26/2024 |
0.2.1-preview.24 | 62 | 1/23/2024 |
0.2.1-preview.23 | 53 | 1/22/2024 |
0.2.1-preview.22 | 68 | 1/12/2024 |
0.2.1-preview.21 | 55 | 1/12/2024 |
0.2.1-preview.20 | 53 | 1/12/2024 |
0.2.1-preview.18 | 77 | 12/18/2023 |
0.2.1-preview.17 | 101 | 12/7/2023 |
0.2.1-preview.16 | 111 | 11/17/2023 |
0.2.1-preview.15 | 90 | 11/13/2023 |
0.2.1-preview.14 | 71 | 11/13/2023 |
0.2.1-preview.13 | 72 | 11/7/2023 |
0.2.1-preview.11 | 135 | 10/24/2023 |
0.2.1-preview.10 | 78 | 10/20/2023 |
0.2.1-preview.8 | 82 | 10/17/2023 |
0.2.1-preview.7 | 75 | 10/13/2023 |
0.2.1-preview.6 | 82 | 10/2/2023 |
0.2.1-preview.5 | 74 | 9/26/2023 |
0.2.1-preview.4 | 66 | 9/21/2023 |
0.2.1-preview.3 | 77 | 9/21/2023 |
0.2.1-preview.2 | 68 | 9/21/2023 |
0.2.1-preview.1 | 69 | 9/21/2023 |
0.2.0 | 12,703 | 9/21/2023 |
0.1.1-preview.6 | 81 | 9/20/2023 |
0.1.1-preview.5 | 70 | 9/20/2023 |
0.1.1-preview.4 | 74 | 9/19/2023 |
0.1.1-preview.3 | 91 | 9/13/2023 |
0.1.1-preview.2 | 82 | 9/13/2023 |
0.1.1-preview.1 | 92 | 9/11/2023 |
0.1.0 | 179 | 9/7/2023 |
0.1.0-preview.33 | 87 | 9/7/2023 |
0.1.0-preview.32 | 78 | 8/25/2023 |
0.1.0-preview.31 | 74 | 8/22/2023 |
0.1.0-preview.30 | 68 | 8/18/2023 |
0.1.0-preview.29 | 77 | 8/16/2023 |
0.1.0-preview.28 | 72 | 8/16/2023 |
0.1.0-preview.27 | 87 | 8/15/2023 |
0.1.0-preview.26 | 77 | 8/14/2023 |
0.1.0-preview.24 | 94 | 8/10/2023 |
0.1.0-preview.23 | 94 | 8/9/2023 |
0.1.0-preview.22 | 91 | 8/4/2023 |
0.1.0-preview.21 | 85 | 8/4/2023 |
0.1.0-preview.20 | 87 | 8/3/2023 |
0.1.0-preview.19 | 89 | 8/1/2023 |
0.1.0-preview.17 | 85 | 8/1/2023 |