laget.Azure.ServiceBus 2.2.51

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package laget.Azure.ServiceBus --version 2.2.51
NuGet\Install-Package laget.Azure.ServiceBus -Version 2.2.51
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="laget.Azure.ServiceBus" Version="2.2.51" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add laget.Azure.ServiceBus --version 2.2.51
#r "nuget: laget.Azure.ServiceBus, 2.2.51"
#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 laget.Azure.ServiceBus as a Cake Addin
#addin nuget:?package=laget.Azure.ServiceBus&version=2.2.51

// Install laget.Azure.ServiceBus as a Cake Tool
#tool nuget:?package=laget.Azure.ServiceBus&version=2.2.51

laget.Azure.ServiceBus

A generic implementation of Microsoft.Azure.ServiceBus, the next generation Azure Service Bus .NET Standard client library that focuses on queues & topics. For more information about Service Bus...

Nuget Nuget

Usage

Azure Service Bus supports reliable message queuing and durable publish/subscribe messaging. The messaging entities that form the core of the messaging capabilities in Service Bus are queues, topics and subscriptions.

Topics

A queue allows processing of a message by a single consumer. In contrast to queues, topics and subscriptions provide a one-to-many form of communication in a publish and subscribe pattern. It's useful for scaling to large numbers of recipients. Each published message is made available to each subscription registered with the topic. Publisher sends a message to a topic and one or more subscribers receive a copy of the message.

TopicSender
public class SomeClass
{
    readonly TopicSender _sender;
    
    public SomeClass(IConfiguration configuration)
    {
        _sender = new TopicSender(
            configuration.GetConnectionString("AzureServiceBus"),
            new TopicOptions
            {
                TopicName = "topic"
            });
    }

    public async Task SendAsync(Models.Event @event)
    {
        await _sender.SendAsync(@event);
    }
}

We're supporting large messages by persisting the message data as blob in a Azure Storage Account.

public class SomeClass
{
    readonly TopicSender _sender;
    
    public SomeClass(IConfiguration configuration)
    {
        _sender = new TopicSender(
            configuration.GetConnectionString("AzureStorageAccount"),
            configuration.GetValue<string>("AzureStorageAccount:BlobContainerName"),
            configuration.GetConnectionString("AzureServiceBus"),
            new TopicOptions
            {
                TopicName = "topic"
            });
    }

    public async Task SendAsync(Models.Event @event)
    {
        await _sender.SendAsync(@event);
    }
}
TopicReceiver
public class SomeClass : BackgroundService
{
    readonly TopicReceiver _receiver;

    public SomeClass(IConfiguration configuration)
    {
        _receiver = new TopicReceiver(
            configuration.GetConnectionString("AzureServiceBus"),
            new TopicOptions
            {
                TopicName = "topic",
                SubscriptionName = "subscription"
            });
    }

    protected override async Task ExecuteAsync(CancellationToken cancellationToken)
    {
        await _receiver.RegisterAsync(MessageHandler, ErrorHandler, cancellationToken);
    }

    private async Task MessageHandler(ProcessMessageEventArgs args, ServiceBusMessage message)
    {
        var model = message.Deserialize<Models.Message>();
        return Task.CompletedTask;
    }

    private static Task ErrorHandler(ProcessErrorEventArgs args)
    {
        return Task.CompletedTask;
    }
}

We're supporting large messages by persisting the message data as blob in a Azure Storage Account.

public class SomeClass : BackgroundService
{
    readonly TopicReceiver _receiver;

    public SomeClass(IConfiguration configuration)
    {
        _receiver = new TopicReceiver(
            configuration.GetConnectionString("AzureStorageAccount"),
            configuration.GetValue<string>("AzureStorageAccount:BlobContainerName"),
            configuration.GetConnectionString("AzureServiceBus"),
            new TopicOptions
            {
                TopicName = "topic",
                SubscriptionName = "subscription"
            });
    }

    protected override async Task ExecuteAsync(CancellationToken cancellationToken)
    {
        await _receiver.RegisterAsync(MessageHandler, ErrorHandler, cancellationToken);
    }

    private async Task MessageHandler(ProcessMessageEventArgs args, ServiceBusMessage message)
    {
        var model = message.Deserialize<Models.Message>();
        return Task.CompletedTask;
    }

    private static Task ErrorHandler(ProcessErrorEventArgs args)
    {
        return Task.CompletedTask;
    }
}

Queues

Queues offer First In, First Out (FIFO) message delivery to one or more competing consumers. That is, receivers typically receive and process messages in the order in which they were added to the queue. And, only one message consumer receives and processes each message.

QueueSender
public class SomeClass
{
    readonly QueueSender _sender;
    
    public SomeClass(IConfiguration configuration)
    {
        _sender = new QueueSender(configuration.GetConnectionString("AzureServiceBus"),
            new TopicOptions
            {
                QueueName = "queue"
            });
    }

    public async Task SendAsync(Models.Event @event)
    {
        await _sender.SendAsync(@event);
    }
}

We're supporting large messages by persisting the message data as blob in a Azure Storage Account.

public class SomeClass
{
    readonly QueueSender _sender;
    
    public SomeClass(IConfiguration configuration)
    {
        _sender = new QueueSender(
            configuration.GetConnectionString("AzureStorageAccount"),
            configuration.GetValue<string>("AzureStorageAccount:BlobContainerName"),
            configuration.GetConnectionString("AzureServiceBus"),
            new TopicOptions
            {
                QueueName = "queue"
            });
    }

    public async Task SendAsync(Models.Event @event)
    {
        await _sender.SendAsync(@event);
    }
}
QueueReceiver
public class SomeClass : BackgroundService
{
    readonly QueueReceiver _receiver;

    public SomeClass(IConfiguration configuration)
    {
        _receiver = new QueueReceiver(
            configuration.GetConnectionString("AzureServiceBus"),
            new QueueReceiver
            {
                QueueName = "queue"
            });
    }

    protected override async Task ExecuteAsync(CancellationToken cancellationToken)
    {
        await _receiver.RegisterAsync(MessageHandler, ErrorHandler, cancellationToken);
    }

    private async Task MessageHandler(ProcessMessageEventArgs args, ServiceBusMessage message)
    {
        var model = message.Deserialize<Models.Message>();
        return Task.CompletedTask;
    }

    private static Task ErrorHandler(ProcessErrorEventArgs args)
    {
        return Task.CompletedTask;
    }
}

We're supporting large messages by persisting the message data as blob in a Azure Storage Account.

public class SomeClass : BackgroundService
{
    readonly QueueReceiver _receiver;

    public SomeClass(IConfiguration configuration)
    {
        _receiver = new QueueReceiver(
            configuration.GetConnectionString("AzureStorageAccount"),
            configuration.GetValue<string>("AzureStorageAccount:BlobContainerName"),
            configuration.GetConnectionString("AzureServiceBus"),
            new QueueReceiver
            {
                QueueName = "queue"
            });
    }

    protected override async Task ExecuteAsync(CancellationToken cancellationToken)
    {
        await _receiver.RegisterAsync(MessageHandler, ErrorHandler, cancellationToken);
    }

    private async Task MessageHandler(ProcessMessageEventArgs args, ServiceBusMessage message)
    {
        var model = message.Deserialize<Models.Message>();
        return Task.CompletedTask;
    }

    private static Task ErrorHandler(ProcessErrorEventArgs args)
    {
        return Task.CompletedTask;
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on laget.Azure.ServiceBus:

Package Downloads
laget.Auditing The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A simple framework to audit entities in .NET and .NET Core...

laget.SFI.Sdk The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This is the Software Development Kit (SDK) for the integration between laget.se and sports associations.

laget.Notifications.Sdk The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package is part of laget.se's Notifications SDK. Use it to register push notifications with laget.Azure.ServiceBus...

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.52 141 5/6/2024
2.2.51 134 4/5/2024
2.2.50 284 3/4/2024
2.2.49 288 1/20/2024
2.2.48 375 12/6/2023
2.2.47 167 11/22/2023
2.2.46 116 11/7/2023
2.2.45 131 11/6/2023
2.2.44 233 10/20/2023
2.1.42 261 10/6/2023
1.1.40 227 10/2/2023
1.1.39 189 9/4/2023
1.1.38 203 7/3/2023
1.1.35 270 5/15/2023
1.1.34 194 4/13/2023
1.1.32 239 4/13/2023
1.1.31 403 4/3/2023
1.1.27 231 3/10/2023
1.1.26 585 3/6/2023
1.1.22 718 12/5/2022
1.1.21 609 11/7/2022
1.1.19 1,060 9/5/2022
1.1.17 859 7/15/2022
1.1.16 1,563 6/7/2022
1.1.15 887 5/3/2022
1.1.14 1,955 4/4/2022
1.1.13 557 4/4/2022
1.1.12 574 4/4/2022
1.1.11 605 3/7/2022
1.1.10 426 12/21/2021
1.1.8 2,282 11/28/2021
1.1.6 3,791 8/16/2021
1.1.5 822 6/11/2021
1.1.4 1,068 6/7/2021
1.1.3 2,032 5/27/2021
1.1.1 419 5/21/2021
1.0.18 552 5/3/2021
1.0.17 473 4/6/2021
1.0.16 435 3/10/2021
1.0.15 493 3/5/2021
1.0.14 2,391 2/1/2021
1.0.13 1,012 1/15/2021
1.0.12 613 1/8/2021
1.0.11 583 1/2/2021
1.0.10 573 12/23/2020
1.0.8 507 12/22/2020
1.0.7 1,703 12/16/2020
1.0.6 512 12/9/2020
1.0.5 562 12/9/2020