Class LockHelper
Class to provide lock objects based on the given key.
public class LockHelper
- Inheritance
-
objectLockHelper
- Extension Methods
Methods
Ensure<T>(ref T, Func<T>, object)
Ensures the value of the given variable in a locked context to prevent multiple loads.
Uses the loadMethod
to initialize the value.
public static T Ensure<T>(ref T variable, Func<T> loadMethod, object lockObject) where T : class
Parameters
variable
TVariable to load
loadMethod
Func<T>Methods that provides the variable value
lockObject
objectObject to use for locking context to ensure only one load
Returns
- T
Type Parameters
T
Exceptions
- ArgumentNullException
Throws when lock object is not defined
Ensure<T>(ref T, object)
Ensures the value of the given variable in a locked context to prevent multiple loads.
Uses the default constructor of T
to initialize the value.
public static T Ensure<T>(ref T variable, object lockObject) where T : class, new()
Parameters
variable
TVariable to load
lockObject
objectObject to use for locking context to ensure only one load
Returns
- T
Type Parameters
T
Exceptions
- ArgumentNullException
Throws when lock object is not defined
ExecuteOnceInLifetime(Action, object, ref bool)
Ensures that the given action is executed only once
public static bool ExecuteOnceInLifetime(Action action, object lockObject, ref bool executedFlag)
Parameters
action
ActionAction to execute
lockObject
objectObject to use for locking context to ensure only one load
executedFlag
boolFlag that indicates if the action was already executed
Returns
- bool
Exceptions
- ArgumentNullException
Throws when lock object is not defined
GetLockObject(string)
Gets the object for lock.
public static LockObject GetLockObject(string key)
Parameters
key
stringLock object key