OpenSleigh.Persistence.InMemory 2.0.2

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

// Install OpenSleigh.Persistence.InMemory as a Cake Tool
#tool nuget:?package=OpenSleigh.Persistence.InMemory&version=2.0.2

OpenSleigh.Persistence.InMemory

Nuget

Description

In-memory Persistence and Transport library for OpenSleigh

Installation

This library can be installed from Nuget: https://www.nuget.org/packages/OpenSleigh.Persistence.InMemory/

How-to

We can use this library for both Persistence and Transport:

Host.CreateDefaultBuilder(args)
    .ConfigureServices((hostContext, services) => {
                services.AddOpenSleigh(cfg =>{ 
                    cfg.UseInMemoryTransport()
                         .UseInMemoryPersistence();

                // register the Sagas here
         });
    });

Of course it can be used in conjunction with any other library as well (eg. InMemory Transport + MongoDb Persistence).

If you decide to use the InMemory Transport, you also have to configure each Saga :

Host.CreateDefaultBuilder(args)
    .ConfigureServices((hostContext, services) => {
               // code omitted //

                    cfg.AddSaga<MySaga, MySagaState>()
                            .UseStateFactory<StartSaga>(msg => new MySagaState(msg.CorrelationId))
                            .UseInMemoryTransport();
         });
    });

Do you like this project? Then consider giving a donation! Donate

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 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. 
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
2.0.2 19,956 8/30/2022
2.0.1 544 1/13/2022
2.0.0 279 12/30/2021
1.3.1 1,672 8/27/2021
1.2.1 364 4/26/2021
1.2.0 360 3/30/2021
1.1.0 331 3/27/2021
1.0.2 364 3/24/2021
1.0.1 430 3/11/2021
1.0.0 355 2/15/2021
0.9.1 382 2/9/2021
0.9.0 367 1/27/2021
0.8.0 354 1/19/2021
0.7.0 338 1/14/2021
0.6.0 382 1/11/2021
0.5.1 383 1/8/2021
0.5.0 399 1/8/2021
0.4.0 386 1/7/2021
0.3.0 350 1/5/2021
0.2.0 409 1/3/2021
0.1.0 349 12/31/2020
0.0.1 367 12/31/2020