Uses of Class
io.vertx.mutiny.core.file.AsyncFileLock
-
Packages that use AsyncFileLock Package Description io.vertx.mutiny.core.file -
-
Uses of AsyncFileLock in io.vertx.mutiny.core.file
Fields in io.vertx.mutiny.core.file with type parameters of type AsyncFileLock Modifier and Type Field Description static TypeArg<AsyncFileLock>
AsyncFileLock. __TYPE_ARG
Methods in io.vertx.mutiny.core.file that return AsyncFileLock Modifier and Type Method Description AsyncFileLock
AsyncFile. lockAndAwait()
Blocking variant ofAsyncFile.lock()
.AsyncFileLock
AsyncFile. lockAndAwait(long position, long size, boolean shared)
Blocking variant ofAsyncFile.lock(long,long,boolean)
.static AsyncFileLock
AsyncFileLock. newInstance(io.vertx.core.file.AsyncFileLock arg)
AsyncFileLock
AsyncFile. tryLock()
AsyncFileLock
AsyncFile. tryLock(long position, long size, boolean shared)
Methods in io.vertx.mutiny.core.file that return types with arguments of type AsyncFileLock Modifier and Type Method Description io.smallrye.mutiny.Uni<AsyncFileLock>
AsyncFile. lock()
LikeAsyncFile.lock()
but thehandler
will be called when the operation is complete or if an error occurs.io.smallrye.mutiny.Uni<AsyncFileLock>
AsyncFile. lock(long position, long size, boolean shared)
LikeAsyncFile.lock()
but thehandler
will be called when the operation is complete or if an error occurs.
-