Multicaster 1.0.0

dotnet add package Multicaster --version 1.0.0                
NuGet\Install-Package Multicaster -Version 1.0.0                
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="Multicaster" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Multicaster --version 1.0.0                
#r "nuget: Multicaster, 1.0.0"                
#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 Multicaster as a Cake Addin
#addin nuget:?package=Multicaster&version=1.0.0

// Install Multicaster as a Cake Tool
#tool nuget:?package=Multicaster&version=1.0.0                

Multicaster

This framework provides a proxy for transparently invoking methods of multiple POCO instances or remote clients through an interface.

For instance, a single call to IGreeter.Hello can invoke methods on several objects or broadcast the call to remote clients like those using MagicOnion or SignalR.

The framework incorporates the concept of groups that bundle together the receivers (targets) to enable transparent invocation, allowing receivers to be added or removed flexibly from the group for ease of management.

Usage

Basic Usage

A Group is requested from IMulticastGroupProvider by specifying a name, key type, and calling interface. If the Group does not exist, it will be created when it is requested. There are synchronous and asynchronous operation versions of the Group, which can be selected according to the use case and supported functions.

public interface IGreeterReceiver
{
    void OnMessage(string sender, string message);
}

public class GreeterReceiver(string name) : IGreeterReceiver
{
    public void OnMessage(string sender, string message)
        => Console.WriteLine($"[{name}] <{sender}> {message}")
}

var group = groupProvider.GetOrAddSynchronousGroup<Guid, IGreeterReceiver>("MyGroup");

You can register a receiver instance that implements the interface for the call with the key to the retrieved Group.

var receiverId = Guid.NewGuid();
group.Add(receiverId, receiver);

[!NOTE] In the case of MagicOnion, you can register the Client property that can be used in StreamingHub.

You get a proxy object that calls the receiver via the Group's properties and methods such as All, Except, Only, and Single, and you can call the methods.

group.All.OnMessage("A", "Hello");

Groups can be deleted from memory by calling Dispose.

group.Dispose();

[!NOTE] Note that this means that in-memory groups are completely deleted, but if Redis/NATS is used as the backplane, they are only deleted from memory on the .NET server that called it, and not from other servers.

In-Memory (Plain Old CLR Object)

Multicaster allows you to call the methods of multiple instances at once.

For example, it is possible to call multiple instances that implement IGreeterReceiver.OnMessage at once. The code below is an example of this.

public interface IGreeterReceiver
{
    void OnMessage(string sender, string message);
}

public class GreeterReceiver(string name) : IGreeterReceiver
{
    public void OnMessage(string sender, string message)
        => Console.WriteLine($"[{name}] <{sender}> {message}")
}
// Create receivers.
var receiverA = new GreeterReceiver("A");
var receiverIdA = Guid.NewGuid();
var receiverB = new GreeterReceiver("B");
var receiverIdB = Guid.NewGuid();
var receiverC = new GreeterReceiver("C");
var receiverIdC = Guid.NewGuid();

// Create a in-memory group provider.
var groupProvider = new InMemoryGroupProvider(DynamicInMemoryProxyFactory.Instance);

// Create a group and add receivers to the group.
using var group = groupProvider.GetOrAddSynchronousGroup<Guid, IGreeterReceiver>("MyGroup");
group.Add(receiverIdA, receiverA);
group.Add(receiverIdB, receiverB);
group.Add(receiverIdC, receiverC);

// Call receivers via proxy.
group.All.OnMessage("System", "Hello");
group.Except([receiverIdA]).OnMessage("System", "Hello without A");

// Call the receiver directly. (Normal method call)
receiverA.OnMessage("DirectMessage", "Sent a message to the receiver directly.");
Outputs
[A] <System> Hello
[B] <System> Hello
[C] <System> Hello
[B] <System> Hello without A
[C] <System> Hello without A
[A] <DirectMessage> Sent a message to the receiver directly.

API

IMulticastGroupProvider interface

  • IMulticastAsyncGroup<TKey, TReceiver> GetOrAddGroup<TKey, TReceiver>(string name);
  • IMulticastSyncGroup<TKey, TReceiver> GetOrAddSynchronousGroup<TKey, TReceiver>(string name);

IMulticastGroup<TKey, T> interface

  • TReceiver All { get; }
  • TReceiver Except(IEnumerable<TKey> excludes);
  • TReceiver Only(IEnumerable<TKey> targets);
  • TReceiver Single(TKey target);
  • void Dispose()
    • Dispose and unregister the group from a group provider.

IMulticastAsyncGroup<TKey, T> interface (implements IMulticastGroup<TKey, T>)

  • ValueTask AddAsync(TKey key, TReceiver receiver, CancellationToken cancellationToken = default);
  • ValueTask RemoveAsync(TKey key, CancellationToken cancellationToken = default);
  • ValueTask<int> CountAsync(CancellationToken cancellationToken = default);

IMulticastSyncGroup<TKey, T> interface (implements IMulticastGroup<TKey, T>)

  • void Add(TKey key, TReceiver receiver);
  • void Remove(TKey key);
  • int Count();

Transports and supported features

Transport Multicast Synchronous Count/CountAsync Client Results
InMemory ✔️ ✔️ ✔️ ✔️
Remote (InMemory) ✔️ ✔️ ✔️ ✔️
Redis ✔️ ✔️ - -
NATS ✔️ ✔️ - -
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Multicaster:

Package Downloads
MagicOnion.Server

MagicOnion server built on top of ASP.NET Core. Unified Realtime/API framework for .NET platform and Unity.

MagicOnion

Unified Realtime/API framework for .NET platform and Unity. This package is meta package that includes MagicOnion.Server and MagicOnion.Client.

MagicOnion.Server.Redis

Redis backplane for MagicOnion.

Multicaster.Distributed.Redis

Package Description

Multicaster.Distributed.Nats

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Multicaster:

Repository Stars
Cysharp/MagicOnion
Unified Realtime/API framework for .NET platform and Unity.
Version Downloads Last updated
1.0.0 29 1/10/2025
0.1.12 13,127 7/11/2024
0.1.11 2,885 6/17/2024
0.1.10 135 6/12/2024
0.1.9 183 6/7/2024
0.1.8 142 6/7/2024
0.1.7 121 6/3/2024
0.1.6 140 6/3/2024
0.1.5 153 5/30/2024
0.1.4 142 5/30/2024
0.1.3 152 5/30/2024
0.1.2 139 5/29/2024
0.1.1 161 5/29/2024
0.1.0 138 5/28/2024