Multicaster.Distributed.Nats 0.1.11

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

// Install Multicaster.Distributed.Nats as a Cake Tool
#tool nuget:?package=Multicaster.Distributed.Nats&version=0.1.11

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

In-Memory (Plain Old CLR Object)

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.
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(ImmutableArray<TKey> excludes);
  • TReceiver Only(ImmutableArray<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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.11 69 6/17/2024
0.1.10 64 6/12/2024
0.1.9 59 6/7/2024
0.1.8 58 6/7/2024
0.1.7 34 6/3/2024
0.1.6 45 6/3/2024
0.1.5 57 5/30/2024
0.1.4 52 5/30/2024
0.1.3 54 5/30/2024
0.1.2 53 5/29/2024
0.1.1 61 5/29/2024
0.1.0 53 5/28/2024