Uses of Class
io.vertx.core.file.OpenOptions
-
Packages that use OpenOptions Package Description io.vertx.core.file io.vertx.reactivex.core.file io.vertx.rxjava3.core.file -
-
Uses of OpenOptions in io.vertx.core.file
Methods in io.vertx.core.file that return OpenOptions Modifier and Type Method Description OpenOptions
OpenOptions. setAppend(boolean append)
Whether the file should be opened in append mode.OpenOptions
OpenOptions. setCreate(boolean create)
Set whether the file should be created if it does not already exist.OpenOptions
OpenOptions. setCreateNew(boolean createNew)
Set whether the file should be created and fail if it does exist already.OpenOptions
OpenOptions. setDeleteOnClose(boolean deleteOnClose)
Set whether the file should be deleted when it's closed, or the JVM is shutdown.OpenOptions
OpenOptions. setDsync(boolean dsync)
Set whether every write to the file's content will be written synchronously to the underlying hardware.OpenOptions
OpenOptions. setPerms(String perms)
Set the permissions stringOpenOptions
OpenOptions. setRead(boolean read)
Set whether the file is to be opened for readingOpenOptions
OpenOptions. setSparse(boolean sparse)
Set whether a hint should be provided that the file to created is sparseOpenOptions
OpenOptions. setSync(boolean sync)
Set whether every write to the file's content and meta-data will be written synchronously to the underlying hardware.OpenOptions
OpenOptions. setTruncateExisting(boolean truncateExisting)
Set whether the file should be truncated to zero length on opening if it exists and is opened for writeOpenOptions
OpenOptions. setWrite(boolean write)
Set whether the file is to be opened for writingMethods in io.vertx.core.file with parameters of type OpenOptions Modifier and Type Method Description Future<AsyncFile>
FileSystem. open(String path, OpenOptions options)
Open the file represented bypath
, asynchronously.AsyncFile
FileSystem. openBlocking(String path, OpenOptions options)
Blocking version ofFileSystem.open(String, io.vertx.core.file.OpenOptions)
Constructors in io.vertx.core.file with parameters of type OpenOptions Constructor Description OpenOptions(OpenOptions other)
Copy constructor -
Uses of OpenOptions in io.vertx.reactivex.core.file
Methods in io.vertx.reactivex.core.file with parameters of type OpenOptions Modifier and Type Method Description Future<AsyncFile>
FileSystem. open(String path, OpenOptions options)
Open the file represented bypath
, asynchronously.AsyncFile
FileSystem. openBlocking(String path, OpenOptions options)
Blocking version ofFileSystem.open(java.lang.String, io.vertx.core.file.OpenOptions)
Single<AsyncFile>
FileSystem. rxOpen(String path, OpenOptions options)
Open the file represented bypath
, asynchronously. -
Uses of OpenOptions in io.vertx.rxjava3.core.file
Methods in io.vertx.rxjava3.core.file with parameters of type OpenOptions Modifier and Type Method Description Single<AsyncFile>
FileSystem. open(String path, OpenOptions options)
Open the file represented bypath
, asynchronously.AsyncFile
FileSystem. openBlocking(String path, OpenOptions options)
Blocking version ofFileSystem.open(java.lang.String, io.vertx.core.file.OpenOptions)
Single<AsyncFile>
FileSystem. rxOpen(String path, OpenOptions options)
Open the file represented bypath
, asynchronously.
-