public class DefaultAsyncFile extends java.lang.Object implements AsyncFile
| Modifier and Type | Field and Description |
|---|---|
static int |
BUFFER_SIZE |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close the file.
|
void |
close(Handler<AsyncResult<java.lang.Void>> handler)
Close the file.
|
AsyncFile |
dataHandler(Handler<Buffer> handler)
Set a data handler.
|
AsyncFile |
drainHandler(Handler<java.lang.Void> handler)
Set a drain handler on the stream.
|
AsyncFile |
endHandler(Handler<java.lang.Void> handler)
Set an end handler.
|
AsyncFile |
exceptionHandler(Handler<java.lang.Throwable> handler)
Set an exception handler.
|
AsyncFile |
flush()
Flush any writes made to this file to underlying persistent storage.
|
AsyncFile |
flush(Handler<AsyncResult<java.lang.Void>> handler)
Same as
AsyncFile.flush() but the handler will be called when the flush is complete or if an error occurs |
AsyncFile |
pause()
Pause the
ReadStream. |
AsyncFile |
read(Buffer buffer,
int offset,
int position,
int length,
Handler<AsyncResult<Buffer>> handler)
Reads
length bytes of data from the file at position position in the file, asynchronously. |
AsyncFile |
resume()
Resume reading.
|
AsyncFile |
setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue to
maxSize. |
AsyncFile |
write(Buffer buffer)
Write some data to the stream.
|
AsyncFile |
write(Buffer buffer,
int position,
Handler<AsyncResult<java.lang.Void>> handler)
Write a
Buffer to the file at position position in the file, asynchronously. |
boolean |
writeQueueFull()
This will return
true if there are more bytes in the write queue than the value set using WriteStream.setWriteQueueMaxSize(int) |
public static final int BUFFER_SIZE
public void close()
AsyncFilepublic void close(Handler<AsyncResult<java.lang.Void>> handler)
AsyncFilepublic AsyncFile write(Buffer buffer, int position, Handler<AsyncResult<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 AsyncFile read(Buffer buffer, int offset, int position, int length, Handler<AsyncResult<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.If data is read past the end of the file then zero bytes will be read.
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 AsyncFile write(Buffer buffer)
WriteStreamWriteStream.writeQueueFull() method before writing. This is done automatically if using a Pump.write in interface WriteStream<AsyncFile>public AsyncFile setWriteQueueMaxSize(int maxSize)
WriteStreammaxSize. You will still be able to write to the stream even
if there is more than maxSize bytes in the write queue. This is used as an indicator by classes such as
Pump to provide flow control.setWriteQueueMaxSize in interface WriteStream<AsyncFile>public boolean writeQueueFull()
WriteStreamtrue if there are more bytes in the write queue than the value set using WriteStream.setWriteQueueMaxSize(int)writeQueueFull in interface WriteStream<AsyncFile>public AsyncFile drainHandler(Handler<java.lang.Void> handler)
WriteStreamPump for an example of this being used.drainHandler in interface WriteStream<AsyncFile>public AsyncFile exceptionHandler(Handler<java.lang.Throwable> handler)
ExceptionSupportexceptionHandler in interface ExceptionSupport<AsyncFile>public AsyncFile dataHandler(Handler<Buffer> handler)
ReadStreamdataHandler in interface ReadStream<AsyncFile>public AsyncFile endHandler(Handler<java.lang.Void> handler)
ReadStreamendHandler in interface ReadStream<AsyncFile>public AsyncFile pause()
ReadStreamReadStream. While the stream is paused, no data will be sent to the dataHandlerpause in interface ReadStream<AsyncFile>public AsyncFile resume()
ReadStreamReadStream has been paused, reading will recommence on it.resume in interface ReadStream<AsyncFile>public AsyncFile 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 AsyncFile flush(Handler<AsyncResult<java.lang.Void>> handler)
AsyncFileAsyncFile.flush() but the handler will be called when the flush is complete or if an error occurs