All checks were successful
DCO / DCO (pull_request) Successful in 46s
Signed-off-by: Pavel Gross <p.gross@yadro.com>
24 lines
571 B
C#
24 lines
571 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
namespace FrostFS.SDK.ClientV2;
|
|
|
|
internal struct SessionCache(ulong sessionExpirationDuration)
|
|
{
|
|
internal Hashtable Cache { get; } = [];
|
|
|
|
internal ulong CurrentEpoch { get; set; }
|
|
|
|
internal ulong TokenDuration { get; set; } = sessionExpirationDuration;
|
|
|
|
internal void DeleteByPrefix(string prefix)
|
|
{
|
|
foreach (var key in Cache.Keys)
|
|
{
|
|
if (((string)key).StartsWith(prefix, StringComparison.Ordinal))
|
|
{
|
|
Cache.Remove(key);
|
|
}
|
|
}
|
|
}
|
|
}
|