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()
AsyncFilepublic void close(AsyncResultHandler handler)
AsyncFilepublic void write(Buffer buffer, int position, AsyncResultHandler<java.lang.Void> handler)
AsyncFileBuffer 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)
AsyncFilelength 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()
AsyncFileWriteStream instance operating on this AsyncFile.getWriteStream in interface AsyncFilepublic ReadStream getReadStream()
AsyncFileReadStream instance operating on this AsyncFile.getReadStream in interface AsyncFilepublic 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)
AsyncFileAsyncFile.flush() but the handler will be called when the flush is complete or if an error occurs