Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

is.locked

Locking/Unlocking


Description

Checks whether a lock has been obtained.

Usage

is.locked(file.lock)

Arguments

file.lock

The lock as an object of type FileLock.

Author(s)

Ivan Popivanov

Examples

## 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

Process Synchronization Using File Locks

v0.7
Apache License 2.0
Authors
Ivan Popivanov
Initial release
2016-11-10

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.