AsyncFile |
AsyncFile.drainHandler(io.vertx.core.Handler<Void> handler) |
|
AsyncFile |
AsyncFile.endHandler(io.vertx.core.Handler<Void> endHandler) |
|
AsyncFile |
AsyncFile.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
|
AsyncFile |
AsyncFile.fetch(long amount) |
|
AsyncFile |
AsyncFile.flush() |
|
AsyncFile |
AsyncFile.flush(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
|
AsyncFile |
AsyncFile.handler(io.vertx.core.Handler<Buffer> handler) |
|
static AsyncFile |
AsyncFile.newInstance(io.vertx.core.file.AsyncFile arg) |
|
AsyncFile |
FileSystem.openBlocking(String path,
io.vertx.core.file.OpenOptions options) |
|
AsyncFile |
AsyncFile.pause() |
|
AsyncFile |
AsyncFile.read(Buffer buffer,
int offset,
long position,
int length) |
Reads length bytes of data from the file at position position in the file, asynchronously.
|
AsyncFile |
AsyncFile.read(Buffer buffer,
int offset,
long position,
int length,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Buffer>> handler) |
Reads length bytes of data from the file at position position in the file, asynchronously.
|
AsyncFile |
AsyncFile.resume() |
|
AsyncFile |
AsyncFile.setReadBufferSize(int readBufferSize) |
Sets the buffer size that will be used to read the data from the file.
|
AsyncFile |
AsyncFile.setReadLength(long readLength) |
Sets the number of bytes that will be read when using the file as a ReadStream.
|
AsyncFile |
AsyncFile.setReadPos(long readPos) |
Sets the position from which data will be read from when using the file as a ReadStream.
|
AsyncFile |
AsyncFile.setWritePos(long writePos) |
Sets the position from which data will be written when using the file as a WriteStream.
|
AsyncFile |
AsyncFile.setWriteQueueMaxSize(int maxSize) |
|