thomaslevesque / AspNetCore.SignalR.AzureServiceBus

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

License:MIT License


Languages

Language:C# 99.9%Language:Batchfile 0.1%