FxMap.Azure.ServiceBus
1.0.3
dotnet add package FxMap.Azure.ServiceBus --version 1.0.3
NuGet\Install-Package FxMap.Azure.ServiceBus -Version 1.0.3
<PackageReference Include="FxMap.Azure.ServiceBus" Version="1.0.3" />
<PackageVersion Include="FxMap.Azure.ServiceBus" Version="1.0.3" />
<PackageReference Include="FxMap.Azure.ServiceBus" />
paket add FxMap.Azure.ServiceBus --version 1.0.3
#r "nuget: FxMap.Azure.ServiceBus, 1.0.3"
#:package FxMap.Azure.ServiceBus@1.0.3
#addin nuget:?package=FxMap.Azure.ServiceBus&version=1.0.3
#tool nuget:?package=FxMap.Azure.ServiceBus&version=1.0.3
FxMap.Azure.ServiceBus
FxMap.Azure.ServiceBus is an extension package for FxMap that leverages Azure Service Bus for reliable and scalable message transportation. This package provides a strongly-typed, cloud-native communication layer for FxMap's FluentAPI-based Data Mapping, enabling seamless data transfer across distributed systems using Microsoft Azure infrastructure.
The Azure Service Bus transport only supports Standard and Premium tiers of the Microsoft Azure Service Bus service. Premium tier is recommended for production environments.
Introduction
Azure Service Bus-based Transport: Implements Azure Service Bus to handle data communication between distributed FxMap services, providing an enterprise-grade, secure, and scalable messaging backbone with features like topics, queues, and session management.
Installation
To install the FxMap.Azure.ServiceBus package, use the following NuGet command:
dotnet add package FxMap.Azure.ServiceBus
Or via the NuGet Package Manager:
Install-Package FxMap.Azure.ServiceBus
How to Use
1. Register FxMap.Azure.ServiceBus
Add FxMap.Azure.ServiceBus to your service configuration during application startup:
Example
builder.Services.AddFxMap(cfg =>
{
cfg.AddEntitiesFromAssemblyContaining<SomeEntityAssemblyMarker>();
cfg.AddProfilesFromAssemblyContaining<SomeProfileAssemblyMarker>();
cfg.AddAzureServiceBus(c => c.Host("SensitiveConnectionString"));
});
...
var app = builder.Build();
...
app.Run();
Note: FxMap.Azure.ServiceBus uses message subjects that start with fxmap-request-[IDistributedKey metadata].
You should avoid using other queues or topics with the same naming pattern.
The package supports both queue-based and topic-based messaging models.
When RequiresSession is enabled, all messages will be processed in a sessionful mode, ensuring ordered delivery.
That's all -- enjoy building your distributed system with FxMap!
| Package Name | Description | .NET Version | Document |
|---|---|---|---|
| Core | |||
| FxMap | FxMap core | 8.0, 9.0, 10.0 | ReadMe |
| Data Providers | |||
| FxMap.EntityFrameworkCore | FxMap extension package using EntityFramework to fetch data | 8.0, 9.0, 10.0 | ReadMe |
| FxMap.MongoDb | FxMap extension package using MongoDb to fetch data | 8.0, 9.0, 10.0 | ReadMe |
| Integrations | |||
| FxMap.HotChocolate | FxMap.HotChocolate is an integration package with HotChocolate for FxMap. | 8.0, 9.0, 10.0 | ReadMe |
| Transports | |||
| FxMap.Aws.Sqs | FxMap.Aws.Sqs is an extension package for FxMap that leverages Amazon SQS for efficient data transportation. | 8.0, 9.0, 10.0 | ReadMe |
| FxMap.Azure.ServiceBus | FxMap.Azure.ServiceBus is an extension package for FxMap that leverages Azure ServiceBus for efficient data transportation. | 8.0, 9.0, 10.0 | This Document |
| FxMap.Grpc | FxMap.Grpc is an extension package for FxMap that leverages gRPC for efficient data transportation. | 8.0, 9.0, 10.0 | ReadMe |
| FxMap.Kafka | FxMap.Kafka is an extension package for FxMap that leverages Kafka for efficient data transportation. | 8.0, 9.0, 10.0 | ReadMe |
| FxMap.Nats | FxMap.Nats is an extension package for FxMap that leverages Nats for efficient data transportation. | 8.0, 9.0, 10.0 | ReadMe |
| FxMap.RabbitMq | FxMap.RabbitMq is an extension package for FxMap that leverages RabbitMq for efficient data transportation. | 8.0, 9.0, 10.0 | ReadMe |
| 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 is compatible. 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. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Azure.Messaging.ServiceBus (>= 7.20.1)
- FxMap (>= 1.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
-
net8.0
- Azure.Messaging.ServiceBus (>= 7.20.1)
- FxMap (>= 1.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
-
net9.0
- Azure.Messaging.ServiceBus (>= 7.20.1)
- FxMap (>= 1.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.