DropBear.Codex.StateManagement
2024.4.7
See the version list below for details.
dotnet add package DropBear.Codex.StateManagement --version 2024.4.7
NuGet\Install-Package DropBear.Codex.StateManagement -Version 2024.4.7
<PackageReference Include="DropBear.Codex.StateManagement" Version="2024.4.7" />
paket add DropBear.Codex.StateManagement --version 2024.4.7
#r "nuget: DropBear.Codex.StateManagement, 2024.4.7"
// Install DropBear.Codex.StateManagement as a Cake Addin #addin nuget:?package=DropBear.Codex.StateManagement&version=2024.4.7 // Install DropBear.Codex.StateManagement as a Cake Tool #tool nuget:?package=DropBear.Codex.StateManagement&version=2024.4.7
DropBear.Codex.StateManagement
DropBear.Codex.StateManagement is a simple state management library designed to monitor and manage the state of your models efficiently. This library provides functionalities for snapshotting model states, tracking changes, and efficiently managing model state through a caching system with a sliding expiration policy.
Features
- Snapshot Initialization: Initialize monitoring of a model by taking a snapshot of its state, which is stored in the cache with customizable expiration.
- Change Detection: Check if the model has changed since the last snapshot was taken and obtain a list of changed properties.
- Snapshot Management: Clear snapshots from the cache to free up resources, especially for models that are no longer in use.
- Extension Methods: Includes extension methods to simplify checking and adding properties to models within the cache.
Getting Started
To use DropBear.Codex.StateManagement in your project, follow these steps:
Add a reference to the library in your project file.
Import the necessary namespaces:
using DropBear.Codex.StateManagement.Extensions; using DropBear.Codex.StateManagement.Interfaces;
Initialize a snapshot of your model:
var model = new YourModel(); IModelStateSnapshot snapshotManager = new ModelStateSnapshot(); snapshotManager.InitializeSnapshot(model, TimeSpan.FromMinutes(30));
Check for changes in the model:
if (snapshotManager.HasModelChanged(model, out var changes)) { Console.WriteLine("Changes detected in the following properties:"); foreach (var change in changes) { Console.WriteLine(change);}}
Clear snapshots from the cache:
snapshotManager.ClearSnapshot(model);
License
This project is licensed under the LGPLv3 License - see the https://www.gnu.org/licenses/lgpl-3.0.en.html for details.
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. |
-
net8.0
- Blake3 (>= 1.1.0)
- DropBear.Codex.AppLogger (>= 2024.4.14)
- System.Runtime.Caching (>= 8.0.0)
- ZString (>= 2.6.0)
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.9.44 | 99 | 9/20/2024 |
2024.9.43 | 105 | 9/16/2024 |
2024.9.42 | 99 | 9/16/2024 |
2024.9.32 | 98 | 9/13/2024 |
2024.9.25 | 100 | 9/11/2024 |
2024.9.1 | 105 | 9/8/2024 |
2024.8.54 | 97 | 9/6/2024 |
2024.8.36 | 100 | 9/2/2024 |
2024.7.1 | 96 | 7/24/2024 |
2024.5.9 | 108 | 5/14/2024 |
2024.5.8 | 114 | 5/14/2024 |
2024.5.7 | 125 | 5/4/2024 |
2024.5.6 | 115 | 5/4/2024 |
2024.5.4 | 111 | 5/4/2024 |
2024.5.3 | 137 | 5/4/2024 |
2024.5.2 | 73 | 5/3/2024 |
2024.5.1 | 72 | 5/3/2024 |
2024.4.44 | 62 | 5/3/2024 |
2024.4.41 | 75 | 5/3/2024 |
2024.4.37 | 80 | 5/3/2024 |
2024.4.36 | 73 | 5/3/2024 |
2024.4.34 | 96 | 5/1/2024 |
2024.4.32 | 104 | 4/30/2024 |
2024.4.31 | 102 | 4/30/2024 |
2024.4.30 | 102 | 4/30/2024 |
2024.4.29 | 106 | 4/30/2024 |
2024.4.27 | 109 | 4/30/2024 |
2024.4.25 | 108 | 4/30/2024 |
2024.4.24 | 101 | 4/30/2024 |
2024.4.23 | 101 | 4/30/2024 |
2024.4.22 | 112 | 4/30/2024 |
2024.4.21 | 109 | 4/30/2024 |
2024.4.20 | 110 | 4/30/2024 |
2024.4.19 | 112 | 4/30/2024 |
2024.4.16 | 94 | 4/29/2024 |
2024.4.14 | 101 | 4/29/2024 |
2024.4.13 | 99 | 4/28/2024 |
2024.4.12 | 96 | 4/28/2024 |
2024.4.10 | 102 | 4/28/2024 |
2024.4.7 | 113 | 4/26/2024 |
2024.4.6 | 111 | 4/25/2024 |
2024.4.5 | 113 | 4/19/2024 |
2024.4.3 | 116 | 4/19/2024 |
2024.4.2 | 123 | 4/16/2024 |
2024.3.6 | 218 | 3/29/2024 |
2024.3.5 | 116 | 3/21/2024 |
2024.3.4 | 121 | 3/17/2024 |
2024.3.3 | 131 | 3/17/2024 |