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
 9
10
11
## Not run: 
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)

## End(Not run)

flock documentation built on May 2, 2019, 6:52 p.m.