Akka.Persistence.Azure.Hosting
0.9.0
Prefix Reserved
See the version list below for details.
dotnet add package Akka.Persistence.Azure.Hosting --version 0.9.0
NuGet\Install-Package Akka.Persistence.Azure.Hosting -Version 0.9.0
<PackageReference Include="Akka.Persistence.Azure.Hosting" Version="0.9.0" />
paket add Akka.Persistence.Azure.Hosting --version 0.9.0
#r "nuget: Akka.Persistence.Azure.Hosting, 0.9.0"
// Install Akka.Persistence.Azure.Hosting as a Cake Addin #addin nuget:?package=Akka.Persistence.Azure.Hosting&version=0.9.0 // Install Akka.Persistence.Azure.Hosting as a Cake Tool #tool nuget:?package=Akka.Persistence.Azure.Hosting&version=0.9.0
Akka.Hosting support for Akka.Persistence.Azure.
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.Persistence.Azure (>= 0.9.0)
- Akka.Persistence.Hosting (>= 0.4.1)
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 |
---|---|---|
1.5.32.1 | 182 | 12/23/2024 |
1.5.32 | 135 | 12/19/2024 |
1.5.31 | 916 | 12/3/2024 |
1.5.28 | 117 | 12/2/2024 |
1.5.26 | 10,222 | 7/4/2024 |
1.5.19 | 4,689 | 4/24/2024 |
1.5.17.1 | 3,079 | 3/4/2024 |
1.5.13 | 9,578 | 10/6/2023 |
1.5.1 | 11,528 | 3/16/2023 |
1.5.0 | 783 | 3/3/2023 |
0.9.2 | 3,785 | 9/27/2022 |
0.9.1 | 2,871 | 8/29/2022 |
0.9.0 | 1,084 | 7/21/2022 |
Added [Akka.Hosting](https://github.com/akkadotnet/Akka.Hosting) support to Akka.Persistence.Azure, which you can activate via the following:
First, install the `Akka.Persistence.Azure.Hosting` NuGet package:
```shell
PS> install-package Akka.Persistence.Azure.Hosting
```
Next, add the `WithAzurePersistence` method calls to your `AkkaConfigurationBuilder` (from Akka.Hosting):
```csharp
var conn = Environment.GetEnvironmentVariable("AZURE_CONNECTION_STR");
var host = new HostBuilder()
.ConfigureServices(collection =>
{
collection.AddAkka("MyActorSys", builder =>
{
// enables both journal and snapshot store
builder.WithAzurePersistence(conn);
builder.StartActors((system, registry) =>
{
var myActor = system.ActorOf(Props.Create(() => new MyPersistenceActor("ac1")), "actor1");
registry.Register<MyPersistenceActor>(myActor);
});
});
}).Build();
await host.StartAsync();
return host;
```
You can also call the following methods to activate the journal / snapshot stores independently:
` WithAzureTableJournal`
`WithAzureBlobsSnapshotStore`