Akka.Persistence.Hosting
0.4.2
Prefix Reserved
See the version list below for details.
dotnet add package Akka.Persistence.Hosting --version 0.4.2
NuGet\Install-Package Akka.Persistence.Hosting -Version 0.4.2
<PackageReference Include="Akka.Persistence.Hosting" Version="0.4.2" />
paket add Akka.Persistence.Hosting --version 0.4.2
#r "nuget: Akka.Persistence.Hosting, 0.4.2"
// Install Akka.Persistence.Hosting as a Cake Addin #addin nuget:?package=Akka.Persistence.Hosting&version=0.4.2 // Install Akka.Persistence.Hosting as a Cake Tool #tool nuget:?package=Akka.Persistence.Hosting&version=0.4.2
Akka.Hosting
BETA: this project is currently in beta status as part of the Akka.NET v1.5 development effort, but the packages published in this repository will be backwards compatible for Akka.NET v1.4 users.
HOCON-less configuration, application lifecycle management, ActorSystem
startup, and actor instantiation for Akka.NET.
Consists of the following packages:
Akka.Hosting
- core, needed for everythingAkka.Remote.Hosting
- enables Akka.Remote configurationAkka.Cluster.Hosting
- used for Akka.Cluster, Akka.Cluster.ShardingAkka.Persistence.SqlServer.Hosting
- used for Akka.Persistence.SqlServer support.Akka.Persistence.PostgreSql.Hosting
- used for Akka.Persistence.PostgreSql support.
See the "Introduction to Akka.Hosting - HOCONless, "Pit of Success" Akka.NET Runtime and Configuration" video for a walkthrough of the library and how it can save you a tremendous amount of time and trouble.
Summary
We want to make Akka.NET something that can be instantiated more typically per the patterns often used with the Microsoft.Extensions.Hosting APIs that are common throughout .NET.
using Akka.Hosting;
using Akka.Actor;
using Akka.Actor.Dsl;
using Akka.Cluster.Hosting;
using Akka.Remote.Hosting;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
{
configurationBuilder
.WithRemoting("localhost", 8110)
.WithClustering(new ClusterOptions(){ Roles = new[]{ "myRole" },
SeedNodes = new[]{ Address.Parse("akka.tcp://MyActorSystem@localhost:8110")}})
.WithActors((system, registry) =>
{
var echo = system.ActorOf(act =>
{
act.ReceiveAny((o, context) =>
{
context.Sender.Tell($"{context.Self} rcv {o}");
});
}, "echo");
registry.TryRegister<Echo>(echo); // register for DI
});
});
var app = builder.Build();
app.MapGet("/", async (context) =>
{
var echo = context.RequestServices.GetRequiredService<ActorRegistry>().Get<Echo>();
var body = await echo.Ask<string>(context.TraceIdentifier, context.RequestAborted).ConfigureAwait(false);
await context.Response.WriteAsync(body);
});
app.Run();
No HOCON. Automatically runs all Akka.NET application lifecycle best practices behind the scene. Automatically binds the ActorSystem
and the ActorRegistry
, another new 1.5 feature, to the IServiceCollection
so they can be safely consumed via both actors and non-Akka.NET parts of users' .NET applications.
This should be open to extension in other child plugins, such as Akka.Persistence.SqlServer
:
builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
{
configurationBuilder
.WithRemoting("localhost", 8110)
.WithClustering(new ClusterOptions()
{
Roles = new[] { "myRole" },
SeedNodes = new[] { Address.Parse("akka.tcp://MyActorSystem@localhost:8110") }
})
.WithSqlServerPersistence(builder.Configuration.GetConnectionString("sqlServerLocal"))
.WithShardRegion<UserActionsEntity>("userActions", s => UserActionsEntity.Props(s),
new UserMessageExtractor(),
new ShardOptions(){ StateStoreMode = StateStoreMode.DData, Role = "myRole"})
.WithActors((system, registry) =>
{
var userActionsShard = registry.Get<UserActionsEntity>();
var indexer = system.ActorOf(Props.Create(() => new Indexer(userActionsShard)), "index");
registry.TryRegister<Index>(indexer); // register for DI
});
})
ActorRegistry
As part of Akka.Hosting, we need to provide a means of making it easy to pass around top-level IActorRef
s via dependency injection both within the ActorSystem
and outside of it.
The ActorRegistry
will fulfill this role through a set of generic, typed methods that make storage and retrieval of long-lived IActorRef
s easy and coherent:
var registry = ActorRegistry.For(myActorSystem); // fetch from ActorSystem
registry.TryRegister<Index>(indexer); // register for DI
registry.Get<Index>(); // use in DI
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Akka.Hosting (>= 0.4.2)
- Akka.Persistence (>= 1.4.40)
NuGet packages (12)
Showing the top 5 NuGet packages that depend on Akka.Persistence.Hosting:
Package | Downloads |
---|---|
Akka.Cluster.Hosting
Akka.Cluster and Akka.Cluster.Sharding Microsoft.Extensions.Hosting support. |
|
Akka.Persistence.PostgreSql.Hosting
Akka.Persistence.PostgreSql Microsoft.Extensions.Hosting support. |
|
Akka.Persistence.Azure.Hosting
Akka.Hosting support for Akka.Persistence.Azure. |
|
Akka.Persistence.SqlServer.Hosting
Akka.Persistence.SqlServer Microsoft.Extensions.Hosting support. |
|
Akka.Persistence.Sql.Hosting
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.30.1 | 2,223 | 10/18/2024 |
1.5.30 | 5,481 | 10/3/2024 |
1.5.29 | 3,147 | 10/1/2024 |
1.5.28 | 7,113 | 9/4/2024 |
1.5.27 | 28,046 | 7/29/2024 |
1.5.25 | 32,174 | 6/17/2024 |
1.5.24 | 5,844 | 6/10/2024 |
1.5.22 | 1,455 | 6/4/2024 |
1.5.20 | 18,843 | 4/30/2024 |
1.5.19 | 12,846 | 4/17/2024 |
1.5.18 | 22,203 | 3/14/2024 |
1.5.17.1 | 8,534 | 3/4/2024 |
1.5.16 | 5,766 | 2/23/2024 |
1.5.15 | 28,737 | 1/10/2024 |
1.5.14 | 3,105 | 1/9/2024 |
1.5.13 | 41,688 | 9/27/2023 |
1.5.12.1 | 26,683 | 8/31/2023 |
1.5.12 | 10,708 | 8/3/2023 |
1.5.8.1 | 9,186 | 7/12/2023 |
1.5.8 | 6,574 | 6/21/2023 |
1.5.7 | 20,316 | 5/23/2023 |
1.5.6.1 | 2,442 | 5/17/2023 |
1.5.6 | 5,787 | 5/10/2023 |
1.5.5 | 3,120 | 5/4/2023 |
1.5.4.1 | 9,193 | 5/1/2023 |
1.5.4 | 4,257 | 4/25/2023 |
1.5.3 | 1,067 | 4/25/2023 |
1.5.2 | 4,961 | 4/6/2023 |
1.5.1.1 | 1,376 | 4/4/2023 |
1.5.1 | 5,129 | 3/16/2023 |
1.5.0 | 15,115 | 3/2/2023 |
1.5.0-beta6 | 611 | 3/1/2023 |
1.5.0-beta4 | 307 | 3/1/2023 |
1.5.0-beta3 | 348 | 2/28/2023 |
1.5.0-alpha4 | 597 | 2/17/2023 |
1.0.3 | 10,479 | 2/8/2023 |
1.0.2 | 2,358 | 1/31/2023 |
1.0.1 | 12,042 | 1/6/2023 |
1.0.0 | 3,322 | 12/28/2022 |
0.5.2-beta1 | 1,322 | 11/28/2022 |
0.5.1 | 10,724 | 10/20/2022 |
0.5.0 | 4,175 | 10/4/2022 |
0.4.3 | 10,551 | 9/10/2022 |
0.4.2 | 8,290 | 8/12/2022 |
0.4.1 | 6,522 | 7/21/2022 |
0.4.0 | 3,272 | 7/18/2022 |
0.3.4 | 4,655 | 6/23/2022 |
0.3.3 | 2,402 | 6/16/2022 |
• [Update Akka.NET from 1.4.39 to 1.4.40](https://github.com/akkadotnet/akka.net/releases/tag/1.4.40)
• [Add WithExtensions() method](https://github.com/akkadotnet/Akka.Hosting/pull/92)
• [Add AddStartup method](https://github.com/akkadotnet/Akka.Hosting/pull/90)
Full changelog at https://github.com/akkadotnet/Akka.Hosting/blob/refs/tags/0.4.2/RELEASE_NOTES.md