blob: 5379702c6ea2e0702e953270ec7a9091d37eb726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
This package provides access to platform dependent file locking APIs:
* Open file descriptor locking on Linux (Lukko.OFD)
* flock locking on unix platforms (Lukko.FLock)
* Windows locking LockFileEx (Lukko.Windows)
* No-op locking, which throws exceptions (Lukko.NoOp)
Lukko module exports the best option for the target platform with
uniform API.
|