Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example

Code Block
languagejs
$Cache.Set('myint', 4);
var tokenValue = $Cache.TryLockLock('myintmylock');
if (tokenValue != null) try {
  // Locked code block
}
finally{
  $Cache.ReleaseLock('myintmylock',tokenValue1tokenValue);
} else {
  // Already locked  
}

See Also