DropBear.Codex.StateManagement 2024.5.2

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

// Install DropBear.Codex.StateManagement as a Cake Tool
#tool nuget:?package=DropBear.Codex.StateManagement&version=2024.5.2

StateSnapshotManager Library

Overview

The StateSnapshotManager library provides a comprehensive solution for managing state snapshots in .NET applications. It supports automatic snapshotting, state reversion, and notifications upon state changes, making it ideal for applications that require historical state management or undo capabilities.

Features

  • Automatic Snapshotting: Automatically captures snapshots of your application's state at configured intervals.
  • State Reversion: Allows reverting to any previously captured state snapshot.
  • Observable State Changes: Utilizes the R3 library to notify subscribers about state reversions, enabling reactive programming scenarios.
  • Flexible Configuration: Use the SnapshotBuilder for easy and fluent configuration of snapshot managers.
  • Multi-Model Management: Manage snapshots for multiple models using the SnapshotManagerRegistry.

Getting Started

Installation

To install the StateSnapshotManager library, use the following NuGet command:

Install-Package DropBear.Codex.StateManagement

Usage

Here's a quick example to get you started with a basic snapshot manager:

using DropBear.Codex.StateManagement.StateSnapshots;

public class YourApplication
{
    public void Setup()
    {
        var snapshotManager = new StateSnapshotManager<MyStateType>(true, TimeSpan.FromMinutes(5), TimeSpan.FromDays(1));
        snapshotManager.StateReverted.Subscribe(state =>
        {
            Console.WriteLine("State has been reverted.");
        });

        // Assume `currentState` is an instance of `MyStateType`
        snapshotManager.CreateSnapshot(currentState);
    }
}
Using the SnapshotBuilder

Here’s how to use the SnapshotBuilder to create a configured StateSnapshotManager:

var builder = new SnapshotBuilder<MyStateType>()
    .SetAutomaticSnapshotting(true)
    .SetSnapshotInterval(TimeSpan.FromMinutes(10))
    .SetRetentionTime(TimeSpan.FromDays(7));

var manager = builder.Build();
Using the SnapshotManagerRegistry

To manage multiple types of snapshot managers:

var registry = new SnapshotManagerRegistry();
registry.CreateSnapshot("userManager", new User { Name = "Alice", Age = 30 });
registry.CreateSnapshot("productManager", new Product { Name = "Widget", Price = 19.99 });

// Reverting state for a user manager
var result = registry.RevertToSnapshot<User>("userManager", 1);

Configuration

StateSnapshotManager can be configured with the following parameters:

  • automaticSnapshotting: Whether the manager should automatically take snapshots.
  • snapshotInterval: The time interval between automatic snapshots.
  • retentionTime: How long snapshots should be retained before being discarded.

Building and Contributing

Contributions to the library are welcome! To build the project from source, clone the repository and open it in your preferred .NET development environment.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

For support and further assistance, contact the package maintainer or submit an issue on the GitHub repository.

Product 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.

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
2024.5.2 3 5/3/2024
2024.5.1 2 5/3/2024
2024.4.44 2 5/3/2024
2024.4.41 2 5/3/2024
2024.4.37 2 5/3/2024
2024.4.36 2 5/3/2024
2024.4.34 32 5/1/2024
2024.4.32 64 4/30/2024
2024.4.31 61 4/30/2024
2024.4.30 64 4/30/2024
2024.4.29 64 4/30/2024
2024.4.27 64 4/30/2024
2024.4.25 68 4/30/2024
2024.4.24 65 4/30/2024
2024.4.23 64 4/30/2024
2024.4.22 69 4/30/2024
2024.4.21 63 4/30/2024
2024.4.20 64 4/30/2024
2024.4.19 75 4/30/2024
2024.4.16 65 4/29/2024
2024.4.14 65 4/29/2024
2024.4.13 66 4/28/2024
2024.4.12 64 4/28/2024
2024.4.10 61 4/28/2024
2024.4.7 76 4/26/2024
2024.4.6 76 4/25/2024
2024.4.5 78 4/19/2024
2024.4.3 77 4/19/2024
2024.4.2 87 4/16/2024
2024.3.6 159 3/29/2024
2024.3.5 85 3/21/2024
2024.3.4 95 3/17/2024
2024.3.3 97 3/17/2024