Muflone.Saga 10.0.1

dotnet add package Muflone.Saga --version 10.0.1
                    
NuGet\Install-Package Muflone.Saga -Version 10.0.1
                    
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="Muflone.Saga" Version="10.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Muflone.Saga" Version="10.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Muflone.Saga" />
                    
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 Muflone.Saga --version 10.0.1
                    
#r "nuget: Muflone.Saga, 10.0.1"
                    
#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.
#:package Muflone.Saga@10.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Muflone.Saga&version=10.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Muflone.Saga&version=10.0.1
                    
Install as a Cake Tool

Muflone.Saga

Basic implementation of a saga (not event sourced at the moment)

Install

Install-Package Muflone.Saga

Breaking change in version 8.1.2

Inside the Saga implementation we integrated IStartedBy to avoid error by forgotting to implement it

So, for example, the code changes from

public class MySaga : Saga<MySaga.MyData>, IStartedBy<FakeStartingCommand>, ISagaEventHandlerAsync<FakeResponse>, ISagaEventHandlerAsync<FakeResponseError>`

to

public class MySaga : Saga<FakeStartingCommand, MySaga.MyData>,     ISagaEventHandlerAsync<FakeResponse>, ISagaEventHandlerAsync<FakeResponseError>

and the implementation of the interface changes feom

public async Task StartedByAsync(FakeStartingCommand command)
{
}

to

public override async Task StartedByAsync(FakeStartingCommand command)
{
}
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Muflone.Saga:

Package Downloads
Muflone.MassTransit.RabbitMQ

Mass transit service bus for RabbitMQ and wrappers for Muflone's CommandHandlers and EventHandlers

Muflone.Transport.RabbitMQ.Saga

Muflone saga implementation for RabbitMQ

Muflone.Transport.Azure.Saga

Muflone saga implementation for MS Azure

Muflone.Saga.Persistence.MongoDb

MongoDb persistence for Muflone's Saga

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.1 295 12/18/2025
8.1.2 358 10/15/2024
8.1.1 264 9/13/2024
6.2.0 842 4/19/2023
6.1.2 313 4/13/2023
6.1.0 586 8/25/2022
1.0.2 958 7/25/2020
1.0.1 833 7/21/2020
1.0.0 864 7/21/2020