Uses of Interface
io.vertx.core.file.AsyncFileLock
-
Packages that use AsyncFileLock Package Description io.vertx.core.file io.vertx.reactivex.core.file io.vertx.rxjava3.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 AsyncFileLock
AsyncFile. tryLock()
Try to acquire a non-shared lock on the entire file.AsyncFileLock
AsyncFile. 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. -
Uses of AsyncFileLock in io.vertx.reactivex.core.file
Methods in io.vertx.reactivex.core.file that return AsyncFileLock Modifier and Type Method Description AsyncFileLock
AsyncFileLock. getDelegate()
Methods in io.vertx.reactivex.core.file with parameters of type AsyncFileLock Modifier and Type Method Description static AsyncFileLock
AsyncFileLock. newInstance(AsyncFileLock arg)
Constructors in io.vertx.reactivex.core.file with parameters of type AsyncFileLock Constructor Description AsyncFileLock(AsyncFileLock delegate)
-
Uses of AsyncFileLock in io.vertx.rxjava3.core.file
Methods in io.vertx.rxjava3.core.file that return AsyncFileLock Modifier and Type Method Description AsyncFileLock
AsyncFileLock. getDelegate()
Methods in io.vertx.rxjava3.core.file with parameters of type AsyncFileLock Modifier and Type Method Description static AsyncFileLock
AsyncFileLock. newInstance(AsyncFileLock arg)
Constructors in io.vertx.rxjava3.core.file with parameters of type AsyncFileLock Constructor Description AsyncFileLock(AsyncFileLock delegate)
-