Skip to content

thomaslevesque/AspNetCore.SignalR.AzureServiceBus

Repository files navigation

AspNetCore.SignalR.AzureServiceBus

NuGet version AppVeyor build AppVeyor tests

Provides scale-out support for ASP.NET Core SignalR using an Azure Service Bus topic to dispatch messages to all server instances.

How to use it

Install the AspNetCore.SignalR.AzureServiceBus package, and add this to your Startup.ConfigureServices method:

services.AddSignalR()
        .AddAzureServiceBus(options =>
        {
            options.ConnectionString = "(your service bus connection string)";
            options.TopicName = "(your topic name)";
        });

See this blog post for details.

About

Provides scale-out support for ASP.NET Core SignalR using an Azure Service Bus topic to dispatch messages to all server instances.

Resources

License

Stars

Watchers

Forks

Packages

No packages published