SessionTracker 2.0.15
dotnet add package SessionTracker --version 2.0.15
NuGet\Install-Package SessionTracker -Version 2.0.15
<PackageReference Include="SessionTracker" Version="2.0.15" />
paket add SessionTracker --version 2.0.15
#r "nuget: SessionTracker, 2.0.15"
// Install SessionTracker as a Cake Addin #addin nuget:?package=SessionTracker&version=2.0.15 // Install SessionTracker as a Cake Tool #tool nuget:?package=SessionTracker&version=2.0.15
SessionTracker
Library that allows working with distributed "sessions".
Features
- Session tracking via starting, updating, finishing, resuming, locking and fetching finished
Session
objects. - Configurable caching settings per
Session
type. - Redis implementations provided out of the box.
Description
A session is encapsulated data that has to be passed around a distributed cache or any other backing-store custom implementation. It is helpful when dealing with for example Discord API interactions that may need some data passed between them while there are multiple service instances.
Installation
To register the session tracker service use the following extension methods:
For base services with no backing-store implementation registration:
builder.AddSessionTracker(options);
For Redis implementation:
builder.AddRedisSessionTracker(redisOptions, options);
If you wish to configure the JsonSerializerOptions
used for serializing/deserializing session instances within Redis provider use:
services.Configure<JsonSerializerOptions>(RedisSessionSettings.JsonSerializerName, yourOptions);
You can implement your own backing store provider and lock provider by implementing ISessionTrackerDataProvider
or ISessionLockProvder
interfaces respectively and registering your new services with the container like so:
services.AddSessionTrackerDataProvider<YourDataProviderType>();
services.AddSessionTrackerLockProvider<YourLockProviderType>();
// or
services.AddSessionTrackerDataProvider(AnInstanceOfYourDataProvider);
services.AddSessionTrackerLockProvider(AnInstanceOfYourLockProvider);
These will overwrite any other provider implementation currently registered with the container.
Example usage
Create your own Session
type:
public CustomSession : Session
{
public bool IsThisASuperSession { get; set; }
public CustomSession(string key, bool isSuper = true) : base(key)
=> IsThisASuperSession = isSuper;
}
Inject ISessionTracker
to your handlers/services/controllers/whatnot:
Start session inside one handler:
public FirstSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public FirstSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
var session = new CustomSession("superKeyForThisSession", false);
var result = await _tracker.StartAsync(session);
if (!result.IsSuccess)
return;
}
}
Update from another:
public SecondSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public SecondSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
var result = await _tracker.GetLockedAsync<CustomSession>("superKeyForThisSession");
if (!result.IsDefined(out var lockedSession))
return;
await using var @lock = lockedSession.Lock;
lockedSession.Session.IsThisASuperSession = true;
await _tracker.UpdateSessionAsync(lockedSession.Session);
}
}
Finalize in fourth:
public FourthSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public FourthSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
await _tracker.FinishAsync<CustomSession>("superKeyForThisSession");
}
}
Product | Versions 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 is compatible. 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. |
-
net6.0
- JetBrains.Annotations (>= 2022.3.1)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.0)
- Remora.Results (>= 7.2.3)
- Remora.Results.Analyzers (>= 1.0.0)
-
net7.0
- JetBrains.Annotations (>= 2022.3.1)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.0)
- Remora.Results (>= 7.2.3)
- Remora.Results.Analyzers (>= 1.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SessionTracker:
Package | Downloads |
---|---|
SessionTracker.Redis
Sub library that adds Redis backing-store implementation for the SessionTracker. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.15 | 416 | 1/9/2023 |
2.0.14 | 353 | 1/9/2023 |
2.0.13 | 406 | 11/19/2022 |
2.0.12 | 411 | 11/19/2022 |
2.0.11 | 501 | 9/6/2022 |
2.0.9 | 494 | 9/4/2022 |
2.0.8 | 483 | 9/4/2022 |
2.0.7 | 497 | 9/4/2022 |
2.0.6 | 494 | 9/4/2022 |
2.0.5 | 486 | 9/4/2022 |
2.0.4 | 504 | 9/4/2022 |
2.0.3 | 499 | 9/4/2022 |
2.0.2 | 486 | 9/4/2022 |
2.0.1 | 493 | 9/3/2022 |
2.0.0 | 389 | 9/3/2022 |
1.1.13 | 425 | 8/30/2022 |
1.1.12 | 379 | 8/30/2022 |
1.1.11 | 379 | 8/30/2022 |
1.1.10 | 380 | 8/30/2022 |
1.1.9 | 374 | 8/30/2022 |
1.1.8 | 393 | 8/29/2022 |
1.1.7 | 386 | 8/29/2022 |
1.1.6 | 387 | 8/29/2022 |
1.1.5 | 392 | 8/29/2022 |
1.1.4 | 377 | 8/29/2022 |
1.1.3 | 388 | 8/29/2022 |
1.1.2 | 394 | 8/29/2022 |
1.1.1 | 398 | 8/29/2022 |
1.1.0 | 382 | 8/29/2022 |
1.0.20 | 387 | 8/29/2022 |
1.0.19 | 398 | 8/29/2022 |
1.0.18 | 374 | 8/29/2022 |
1.0.17 | 371 | 8/29/2022 |
1.0.16 | 377 | 8/29/2022 |
1.0.15 | 361 | 8/29/2022 |
1.0.14 | 375 | 8/28/2022 |
1.0.13 | 369 | 8/28/2022 |
1.0.12 | 386 | 8/28/2022 |
1.0.11 | 388 | 8/28/2022 |
1.0.10 | 373 | 8/28/2022 |
1.0.9 | 378 | 8/28/2022 |
1.0.8 | 384 | 8/27/2022 |
1.0.7 | 382 | 8/27/2022 |
1.0.6 | 382 | 8/27/2022 |
1.0.5 | 392 | 8/27/2022 |
1.0.4 | 388 | 8/27/2022 |
1.0.3 | 370 | 8/27/2022 |
1.0.2 | 395 | 8/27/2022 |
1.0.1 | 388 | 8/27/2022 |
1.0.0 | 412 | 8/27/2022 |