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