BUFFER_SIZE
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the file.
|
void |
close(AsyncResultHandler handler)
Close the file.
|
void |
flush()
Flush any writes made to this file to underlying persistent storage.
|
void |
flush(AsyncResultHandler handler)
Same as
AsyncFile.flush() but the handler will be called when the flush is complete or if an error occurs |
ReadStream |
getReadStream()
Return a
ReadStream instance operating on this AsyncFile . |
WriteStream |
getWriteStream()
Return a
WriteStream instance operating on this AsyncFile . |
void |
read(Buffer buffer,
int offset,
int position,
int length,
AsyncResultHandler<Buffer> handler)
Reads
length bytes of data from the file at position position in the file, asynchronously. |
void |
write(Buffer buffer,
int position,
AsyncResultHandler<java.lang.Void> handler)
Write a
Buffer to the file at position position in the file, asynchronously. |
public void close()
AsyncFile
public void close(AsyncResultHandler handler)
AsyncFile
public void write(Buffer buffer, int position, AsyncResultHandler<java.lang.Void> handler)
AsyncFile
Buffer
to the file at position position
in the file, asynchronously.
If position
lies outside of the current size
of the file, the file will be enlarged to encompass it.When multiple writes are invoked on the same file there are no guarantees as to order in which those writes actually occur.
The handler will be called when the write is complete, or if an error occurs.
public void read(Buffer buffer, int offset, int position, int length, AsyncResultHandler<Buffer> handler)
AsyncFile
length
bytes of data from the file at position position
in the file, asynchronously.
The read data will be written into the specified Buffer buffer
at position offset
.
The index position + length
must lie within the confines of the file.
When multiple reads are invoked on the same file there are no guarantees as to order in which those reads actually occur.
The handler will be called when the close is complete, or if an error occurs.
public WriteStream getWriteStream()
AsyncFile
WriteStream
instance operating on this AsyncFile
.getWriteStream
in interface AsyncFile
public ReadStream getReadStream()
AsyncFile
ReadStream
instance operating on this AsyncFile
.getReadStream
in interface AsyncFile
public void flush()
AsyncFile
If the file was opened with flush
set to true
then calling this method will have no effect.
The actual flush will happen asynchronously.
public void flush(AsyncResultHandler handler)
AsyncFile
AsyncFile.flush()
but the handler will be called when the flush is complete or if an error occurs