PvWay.SemaphoreService.Abstractions.nc8
1.0.2
See the version list below for details.
dotnet add package PvWay.SemaphoreService.Abstractions.nc8 --version 1.0.2
NuGet\Install-Package PvWay.SemaphoreService.Abstractions.nc8 -Version 1.0.2
<PackageReference Include="PvWay.SemaphoreService.Abstractions.nc8" Version="1.0.2" />
paket add PvWay.SemaphoreService.Abstractions.nc8 --version 1.0.2
#r "nuget: PvWay.SemaphoreService.Abstractions.nc8, 1.0.2"
// Install PvWay.SemaphoreService.Abstractions.nc8 as a Cake Addin #addin nuget:?package=PvWay.SemaphoreService.Abstractions.nc8&version=1.0.2 // Install PvWay.SemaphoreService.Abstractions.nc8 as a Cake Tool #tool nuget:?package=PvWay.SemaphoreService.Abstractions.nc8&version=1.0.2
SemaphoreService abstractions for .Net Core 8 by pvWay
This nuGet brings the abstraction interfaces for the SemaphoreService
Interfaces and enums
SemaphoreStatus enum
This enum enumerates the different possible statuses of a semaphore when trying to acquire it
- Acquired: (success status) the semaphore was acquired
- ReleasedInTheMeanTime: the semaphore was locked by someone else but when getting more info it finally appeared released.
- OwnedBySomeoneElse: another process currently owns the semaphore. Other processes will have to wait until the semaphore will be released by the owner process.
- ForcedReleased: the semaphore was locked by another process that seems not being responding for a while. As such, the release of the semaphore was forced.
namespace PvWay.SemaphoreService.Abstractions.nc8;
public enum SemaphoreStatusEnu
{
Acquired,
ReleasedInTheMeanTime,
OwnedSomeoneElse,
ForcedReleased
}
IDbSemaphore
Small object that holds some useful information about the semaphore
namespace PvWay.SemaphoreService.Abstractions.nc8;
public interface ISemaphoreInfo
{
SemaphoreStatusEnu Status { get; }
string Name {get; }
string Owner { get; }
TimeSpan Timeout { get; }
DateTime ExpiresAtUtc { get; }
DateTime CreateDateUtc { get; }
DateTime UpdateUtcDate { get; }
}
ISemaphoreService
namespace PvWay.SemaphoreService.Abstractions.nc8;
public interface ISemaphoreService
{
/// <summary>
/// This method will actually try to acquire the semaphore
/// </summary>
/// <param name="name">The semaphore name</param>
/// <param name="owner">
/// The name of the process that tries to acquire the semaphore
/// </param>
/// <param name="timeout">
/// The estimated time out timespan that the lock will stay active (if not refreshed).
/// If the semaphore is locked longer than the timeout period it will be forced release
/// by any other process trying to acquire the semaphore</param>
/// <returns>On success the status will be Acquired.</returns>
Task<ISemaphoreInfo> AcquireSemaphoreAsync(
string name, string owner, TimeSpan timeout);
/// <summary>
/// Extend the validity timespan of the semaphore
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
Task TouchSemaphoreAsync(string name);
/// <summary>
/// Free the semaphore so that any other process can now acquire it
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
Task ReleaseSemaphoreAsync(string name);
/// <summary>
/// Get some info about a given semaphore
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
Task<ISemaphoreInfo?> GetSemaphoreAsync(string name);
/// <summary>
/// this method provides a mutex (semaphore) protected
/// work session when a provided work can be performed.
/// </summary>
/// <param name="semaphoreName">The name of the mutex</param>
/// <param name="owner">the owner of the mutex (usually the machineName)</param>
/// <param name="timeout">The validity time of the lock</param>
/// <param name="workAsync">
/// The work to be performed.
/// </param>
/// <param name="notify">An optional notifier that will be used
/// for notifying sleep times</param>
/// <param name="sleepBetweenAttemptsInSeconds">
/// The number of seconds between two attempts for locking the semaphore</param>
/// <typeparam name="T">Type return by the workAsync method</typeparam>
/// <returns>The T result of the function invoked</returns>
Task<T> IsolateWorkAsync<T>(
string semaphoreName, string owner,
TimeSpan timeout,
Func<Task<T>> workAsync,
Action<string>? notify = null,
int sleepBetweenAttemptsInSeconds = 15);
}
Happy coding
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
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on PvWay.SemaphoreService.Abstractions.nc8:
Package | Downloads |
---|---|
PvWay.PgSqlSemaphoreService.nc8
This nuGet implements the SemaphoreService interfaces using a tiny DAO connection towards an PostgreSQL Database. |
|
PvWay.MsSqlSemaphoreService.nc8
This nuGet implements the SemaphoreService interfaces using a tiny DAO connection towards an Ms Sql Server Database. |
GitHub repositories
This package is not used by any popular GitHub repositories.
ISemaphoreInfo got Name field