Package org.eclipse.tycho.locking.facade
Interface FileLockService
-
- All Known Implementing Classes:
FileLockServiceImpl
public interface FileLockService
Provides process-level file locking.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileLocker
getFileLocker(File file)
Get a locker object which can be used to protect read/write access from multiple processes on the given file.
-
-
-
Method Detail
-
getFileLocker
FileLocker getFileLocker(File file)
Get a locker object which can be used to protect read/write access from multiple processes on the given file. Locking is advisory only, i.e. all processes must use the same locking mechanism.
-
-