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.
<PackageVersion Include="OpenSleigh.Persistence.InMemory" Version="2.0.2" />
                    
Directory.Packages.props
<PackageReference Include="OpenSleigh.Persistence.InMemory" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#addin nuget:?package=OpenSleigh.Persistence.InMemory&version=2.0.2
                    
Install OpenSleigh.Persistence.InMemory as a Cake Addin
#tool nuget:?package=OpenSleigh.Persistence.InMemory&version=2.0.2
                    
Install OpenSleigh.Persistence.InMemory as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 20,689 8/30/2022
2.0.1 594 1/13/2022
2.0.0 322 12/30/2021
1.3.1 1,838 8/27/2021
1.2.1 409 4/26/2021
1.2.0 407 3/30/2021
1.1.0 382 3/27/2021
1.0.2 416 3/24/2021
1.0.1 466 3/11/2021
1.0.0 400 2/15/2021
0.9.1 435 2/9/2021
0.9.0 414 1/27/2021
0.8.0 400 1/19/2021
0.7.0 385 1/14/2021
0.6.0 422 1/11/2021
0.5.1 430 1/8/2021
0.5.0 453 1/8/2021
0.4.0 439 1/7/2021
0.3.0 404 1/5/2021
0.2.0 463 1/3/2021
0.1.0 388 12/31/2020
0.0.1 405 12/31/2020