Devlooped.CloudActors.Streamstone
0.4.0
Prefix Reserved
dotnet add package Devlooped.CloudActors.Streamstone --version 0.4.0
NuGet\Install-Package Devlooped.CloudActors.Streamstone -Version 0.4.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="Devlooped.CloudActors.Streamstone" Version="0.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Devlooped.CloudActors.Streamstone --version 0.4.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Devlooped.CloudActors.Streamstone, 0.4.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 Devlooped.CloudActors.Streamstone as a Cake Addin #addin nuget:?package=Devlooped.CloudActors.Streamstone&version=0.4.0 // Install Devlooped.CloudActors.Streamstone as a Cake Tool #tool nuget:?package=Devlooped.CloudActors.Streamstone&version=0.4.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Streamstone storage provider for Orleans grain persistence, supporting Cloud Actors on Azure Table Storage.
Features
- Supports plain CLR objects as grain state
- Supports event sourced actors
- Supports automatic snapshots for faster state reading
See Streamstone for more details.
Usage
var builder = WebApplication.Create(args);
// other config, specially Orleans and Cloud Actors
// 👇 register provider as default for all grains/actors
builder.Services.AddSingletonNamedService<IGrainStorage, StreamstoneStorage>(ProviderConstants.DEFAULT_STORAGE_PROVIDER_NAME);
// 👇 register provider with a specific name, alternatively
builder.Services.AddSingletonNamedService<IGrainStorage, StreamstoneStorage>("streamstone");
If the storage provider is registered with a specific name, actors can then specify the name of the provider to use:
[Actor(nameof(Account), "streamstone")]
public partial class Account : IEventSourced
Sponsors
Product | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Devlooped.CloudActors (>= 0.4.0)
- Devlooped.CloudStorageAccount (>= 1.2.0)
- Microsoft.Orleans.Runtime (>= 8.1.0)
- Streamstone (>= 3.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.