10 lines
287 B
C#
10 lines
287 B
C#
|
|
namespace Umbraco.Cms.Core.DistributedLocking;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Picks an appropriate IDistributedLockingMechanism when multiple are registered
|
||
|
|
/// </summary>
|
||
|
|
public interface IDistributedLockingMechanismFactory
|
||
|
|
{
|
||
|
|
IDistributedLockingMechanism DistributedLockingMechanism { get; }
|
||
|
|
}
|