Package org.apache.ivy.plugins.lock
Class FileBasedLockStrategy.CreateFileLocker
- java.lang.Object
-
- org.apache.ivy.plugins.lock.FileBasedLockStrategy.CreateFileLocker
-
- All Implemented Interfaces:
FileBasedLockStrategy.FileLocker
- Enclosing class:
- FileBasedLockStrategy
public static class FileBasedLockStrategy.CreateFileLocker extends java.lang.Object implements FileBasedLockStrategy.FileLocker
"locks" a file by creating it if it doesn't exist, relying on theFile.createNewFile()
atomicity.
-
-
Constructor Summary
Constructors Constructor Description CreateFileLocker(boolean debugLocking)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
tryLock(java.io.File file)
void
unlock(java.io.File file)
-
-
-
Method Detail
-
tryLock
public boolean tryLock(java.io.File file)
- Specified by:
tryLock
in interfaceFileBasedLockStrategy.FileLocker
-
unlock
public void unlock(java.io.File file)
- Specified by:
unlock
in interfaceFileBasedLockStrategy.FileLocker
-
-