Petabridge.Cmd.Cluster
1.1.0
Prefix Reserved
Install-Package Petabridge.Cmd.Cluster -Version 1.1.0
dotnet add package Petabridge.Cmd.Cluster --version 1.1.0
<PackageReference Include="Petabridge.Cmd.Cluster" Version="1.1.0" />
paket add Petabridge.Cmd.Cluster --version 1.1.0
#r "nuget: Petabridge.Cmd.Cluster, 1.1.0"
// Install Petabridge.Cmd.Cluster as a Cake Addin
#addin nuget:?package=Petabridge.Cmd.Cluster&version=1.1.0
// Install Petabridge.Cmd.Cluster as a Cake Tool
#tool nuget:?package=Petabridge.Cmd.Cluster&version=1.1.0
Akka.Cluster Petabridge.Cmd palettes for cluster management and monitoring.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- Akka.Cluster (>= 1.4.39)
- Petabridge.Cmd.Host (>= 1.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Petabridge.Cmd.Cluster:
Repository | Stars |
---|---|
Aaronontheweb/InMemoryCQRSReplication
Akka.NET Reference Architecture - CQRS + Sharding + In-Memory Replication
|
Version | Downloads | Last updated |
---|---|---|
1.1.0 | 4,085 | 6/9/2022 |
1.0.2 | 28,135 | 11/16/2021 |
1.0.1 | 21,684 | 8/3/2021 |
1.0.0 | 1,944 | 7/26/2021 |
0.8.5 | 31,778 | 5/3/2021 |
0.8.4 | 367 | 4/30/2021 |
0.8.3 | 8,277 | 3/18/2021 |
0.8.2 | 29,093 | 11/24/2020 |
0.8.1 | 9,521 | 11/16/2020 |
0.8.0 | 50,748 | 3/11/2020 |
0.8.0-rc2 | 405 | 3/10/2020 |
0.8.0-rc1 | 387 | 3/3/2020 |
0.7.1 | 7,082 | 3/3/2020 |
0.7.0 | 31,340 | 10/3/2019 |
0.6.3 | 9,721 | 7/30/2019 |
0.6.2 | 5,762 | 6/19/2019 |
0.6.1 | 1,914 | 5/19/2019 |
0.6.0 | 7,028 | 5/9/2019 |
0.5.0 | 51,981 | 3/6/2019 |
0.4.1 | 3,181 | 12/7/2018 |
0.4.0 | 1,181 | 11/27/2018 |
0.3.3 | 28,959 | 2/27/2018 |
0.3.2 | 15,756 | 12/20/2017 |
0.3.1 | 3,059 | 9/19/2017 |
0.3.0 | 824 | 9/14/2017 |
0.2.2 | 5,437 | 6/25/2017 |
0.2.1 | 738 | 6/6/2017 |
0.2.0 | 5,304 | 5/21/2017 |
0.1.2 | 714 | 4/25/2017 |
0.1.1 | 743 | 4/21/2017 |
0.1.0 | 939 | 4/18/2017 |
Minor Version Release for Petabridge.Cmd**
In Petabridge.Cmd 1.1 we add support for [Akka.Hosting](https://github.com/akkadotnet/Akka.Hosting), which makes it trivial to add `PetabridgeCmd` to any `ActorSystem` with minimal configuration:
```csharp
using var host = await (new HostBuilder().ConfigureServices((context, collection) =>
{
collection.AddAkka("PbmSys", builder =>
{
builder.WithRemoting("localhost", 29909)
.WithClustering(new ClusterOptions(){ SeedNodes = new[]{ Address.Parse("akka.tcp://PbmSys@localhost:29909"), }})
.AddPetabridgeCmd(cmd =>
{
cmd.RegisterCommandPalette(new RemoteCommands());
cmd.RegisterCommandPalette(ClusterCommands.Instance);
});
});
}).StartAsync());
```
The `AddPetabridgeCmd` method will create the `PetabridgeCmd` instance, allow you to register `CommandPalette`s on it, and then start listening on the `pbm` port as soon as the `ActorSystem` is started by Akka.Hosting.
Other minor changes in this release:
Upgraded to [Akka.NET v1.4.39](https://github.com/akkadotnet/akka.net/releases/tag/1.4.39).