Skip to content

Latest commit

 

History

History
107 lines (80 loc) · 3.6 KB

README.md

File metadata and controls

107 lines (80 loc) · 3.6 KB

SignalR.Orleans

SignalR.Orleans

CircleCI NuGet Gitter

Orleans is a framework that provides a straight-forward approach to building distributed high-scale computing applications, without the need to learn and apply complex concurrency or other scaling patterns.

ASP.NET Core SignalR is a new library for ASP.NET Core developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time.

SignalR.Orleans is a package that allow us to enhance the real-time capabilities of SignalR by leveraging Orleans distributed cloud platform capabilities.

Installation

Installation is performed via NuGet

From Package Manager:

PS> Install-Package SignalR.Orleans -prerelease

.Net CLI:

# dotnet add package SignalR.Orleans -prerelease

Paket:

# paket add SignalR.Orleans -prerelease

Configuration

Silo

We need to configure the Orleans Silo with the below:

  • Use .AddSignalR() on ClusterConfiguration.
  • Use .UseSignalR() on ISiloHostBuilder.

Example

var siloConfig = ClusterConfiguration.LocalhostPrimarySilo()
    .AddSignalR();

var silo = new SiloHostBuilder()
    .UseConfiguration(siloConfig)
    .UseSignalR()
    .Build();
await silo.StartAsync();

Client

Now your SignalR application needs to connect to the Orleans Cluster by using an Orleans Client:

  • Use .AddSignalR() on ClientConfiguration.
  • Use .UseSignalR() on IClientBuilder.

Example

var clientConfig = ClientConfiguration.LocalhostSilo()
    .AddSignalR();

var client = new ClientBuilder()
    .UseConfiguration(clientConfig)
    .UseSignalR()
    .Build();
    await client.Connect();

Somewhere in your Startup.cs:

  • Use .AddSignalR() on IServiceCollection (this is part of Microsoft.AspNetCore.SignalR nuget package).
  • Use .AddOrleans() on ISignalRBuilder.

Example

public void ConfigureServices(IServiceCollection services)
{
    ...
    services.AddSignalR()
            .AddOrleans();
    ...
}

Great! Now you have SignalR configured and Orleans SignalR backplane built in Orleans!

Features

Hub Context

HubContext gives you the ability to communicate with the client from orleans grains (outside the hub).

Sample usage: Receiving server push notifications from message brokers, web hooks, etc. Ideally first update your grain state and then push signalr message to the client.

Example:

public class UserNotificationGrain : Grain<UserNotificationState>, IUserNotificationGrain
{
	private HubContext<IUserNotificationHub> _hubContext;

	public override async Task OnActivateAsync()
	{
		_hubContext = GrainFactory.GetHub<IUserNotificationHub>();
		// some code...
		await _hubContext.User(this.GetPrimaryKeyString()).SendSignalRMessage("Broadcast", State.UserNotification);
	}
}

Contributions

PRs and feedback are very welcome!