Uses of Interface
io.vertx.core.file.AsyncFileLock
-
Packages that use AsyncFileLock Package Description io.vertx.core.file -
-
Uses of AsyncFileLock in io.vertx.core.file
Methods in io.vertx.core.file that return AsyncFileLock Modifier and Type Method Description default AsyncFileLockAsyncFile. tryLock()Try to acquire a non-shared lock on the entire file.AsyncFileLockAsyncFile. tryLock(long position, long size, boolean shared)Try to acquire a lock on a portion of this file.Methods in io.vertx.core.file that return types with arguments of type AsyncFileLock Modifier and Type Method Description default Future<AsyncFileLock>AsyncFile. lock()Acquire a non-shared lock on the entire file.Future<AsyncFileLock>AsyncFile. lock(long position, long size, boolean shared)Acquire a lock on a portion of this file.
-