is.locked: Locking/Unlocking

Description Usage Arguments Author(s) Examples

Description

Checks whether a lock has been obtained.

Usage

1
is.locked(file.lock)

Arguments

file.lock

The lock as an object of type FileLock.

Author(s)

Ivan Popivanov

Examples

1
2
3
4
5
6
7
8
require(flock)

file.lock = lock("~/file.lock")
# Critical section code goes between here and the unlock call
if(is.locked(file.lock)) {
   print("Got the lock!")
}
unlock(file.lock)

systematicinvestor/flock documentation built on May 31, 2019, 12:49 a.m.