public class AsyncFile extends Object implements ReadStream<Buffer>, WriteStream<Buffer>
This class also implements ReadStream
and
WriteStream
. This allows the data to be pumped to and from
other streams, e.g. an HttpClientRequest
instance,
using the Pump
class
original
non RX-ified interface using Vert.x codegen.Modifier and Type | Field and Description |
---|---|
static TypeArg<AsyncFile> |
__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the file.
|
void |
close(Handler<AsyncResult<Void>> handler)
Close the file.
|
rx.Observable<Void> |
closeObservable()
Deprecated.
use
rxClose() instead |
AsyncFile |
drainHandler(Handler<Void> handler)
Set a drain handler on the stream.
|
void |
end()
Close the file, see
close() . |
void |
end(Buffer t)
Same as
end(io.vertx.rxjava.core.buffer.Buffer) but writes some data to the stream before ending. |
AsyncFile |
endHandler(Handler<Void> endHandler)
Set an end handler.
|
boolean |
equals(Object o) |
AsyncFile |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the read stream.
|
AsyncFile |
fetch(long amount)
Fetch the specified
amount of elements. |
AsyncFile |
flush()
Flush any writes made to this file to underlying persistent storage.
|
AsyncFile |
flush(Handler<AsyncResult<Void>> handler)
Same as
flush() but the handler will be called when the flush is complete or if an error occurs |
rx.Observable<Void> |
flushObservable()
Deprecated.
use
rxFlush() instead |
AsyncFile |
getDelegate() |
long |
getWritePos() |
AsyncFile |
handler(Handler<Buffer> handler)
Set a data handler.
|
int |
hashCode() |
static AsyncFile |
newInstance(AsyncFile arg) |
AsyncFile |
pause()
Pause the
ReadStream , it sets the buffer in fetch mode and clears the actual demand. |
Pipe<Buffer> |
pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .
|
void |
pipeTo(WriteStream<Buffer> dst)
Like
ReadStream.pipeTo(io.vertx.rxjava.core.streams.WriteStream<T>) but with no completion handler. |
void |
pipeTo(WriteStream<Buffer> dst,
Handler<AsyncResult<Void>> handler)
Pipe this
ReadStream to the WriteStream . |
rx.Observable<Void> |
pipeToObservable(WriteStream<Buffer> dst)
Deprecated.
|
AsyncFile |
read(Buffer buffer,
int offset,
long position,
int length,
Handler<AsyncResult<Buffer>> handler)
Reads
length bytes of data from the file at position position in the file, asynchronously. |
rx.Observable<Buffer> |
readObservable(Buffer buffer,
int offset,
long position,
int length)
Deprecated.
|
AsyncFile |
resume()
Resume reading, and sets the buffer in
flowing mode. |
rx.Single<Void> |
rxClose()
Close the file.
|
rx.Single<Void> |
rxFlush()
Same as
flush() but the handler will be called when the flush is complete or if an error occurs |
rx.Single<Void> |
rxPipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream . |
rx.Single<Buffer> |
rxRead(Buffer buffer,
int offset,
long position,
int length)
Reads
length bytes of data from the file at position position in the file, asynchronously. |
rx.Single<Void> |
rxWrite(Buffer buffer,
long position)
Write a
Buffer to the file at position position in the file, asynchronously. |
AsyncFile |
setReadBufferSize(int readBufferSize)
Sets the buffer size that will be used to read the data from the file.
|
AsyncFile |
setReadPos(long readPos)
Sets the position from which data will be read from when using the file as a
ReadStream . |
AsyncFile |
setWritePos(long writePos)
Sets the position from which data will be written when using the file as a
WriteStream . |
AsyncFile |
setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue to
maxSize . |
rx.Observable<Buffer> |
toObservable() |
String |
toString() |
WriteStreamSubscriber<Buffer> |
toSubscriber() |
AsyncFile |
write(Buffer data)
Write some data to the stream.
|
AsyncFile |
write(Buffer buffer,
long position,
Handler<AsyncResult<Void>> handler)
Write a
Buffer to the file at position position in the file, asynchronously. |
rx.Observable<Void> |
writeObservable(Buffer buffer,
long position)
Deprecated.
|
boolean |
writeQueueFull()
This will return
true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int) |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
newInstance, newInstance
newInstance, newInstance
newInstance
public AsyncFile(AsyncFile delegate)
public AsyncFile getDelegate()
getDelegate
in interface ReadStream<Buffer>
getDelegate
in interface StreamBase
getDelegate
in interface WriteStream<Buffer>
public rx.Observable<Buffer> toObservable()
toObservable
in interface ReadStream<Buffer>
public WriteStreamSubscriber<Buffer> toSubscriber()
public void end(Buffer t)
end(io.vertx.rxjava.core.buffer.Buffer)
but writes some data to the stream before ending.end
in interface WriteStream<Buffer>
t
- public boolean writeQueueFull()
true
if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int)
writeQueueFull
in interface WriteStream<Buffer>
public Pipe<Buffer> pipe()
WriteStream
.pipe
in interface ReadStream<Buffer>
public void pipeTo(WriteStream<Buffer> dst)
ReadStream.pipeTo(io.vertx.rxjava.core.streams.WriteStream<T>)
but with no completion handler.pipeTo
in interface ReadStream<Buffer>
dst
- public void pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
ReadStream
to the WriteStream
.
Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the handler
will be
called with the result.
pipeTo
in interface ReadStream<Buffer>
dst
- the destination write streamhandler
- @Deprecated public rx.Observable<Void> pipeToObservable(WriteStream<Buffer> dst)
rxPipeTo(io.vertx.rxjava.core.streams.WriteStream<io.vertx.rxjava.core.buffer.Buffer>)
insteadReadStream
to the WriteStream
.
Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the handler
will be
called with the result.
dst
- the destination write streampublic rx.Single<Void> rxPipeTo(WriteStream<Buffer> dst)
ReadStream
to the WriteStream
.
Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the handler
will be
called with the result.
dst
- the destination write streampublic AsyncFile handler(Handler<Buffer> handler)
ReadStream
handler
in interface ReadStream<Buffer>
public AsyncFile pause()
ReadStream
ReadStream
, it sets the buffer in fetch
mode and clears the actual demand.
While it's paused, no data will be sent to the data handler
.
pause
in interface ReadStream<Buffer>
public AsyncFile resume()
ReadStream
flowing
mode.
If the ReadStream
has been paused, reading will recommence on it.resume
in interface ReadStream<Buffer>
public AsyncFile endHandler(Handler<Void> endHandler)
ReadStream
endHandler
in interface ReadStream<Buffer>
public AsyncFile write(Buffer data)
WriteStream
WriteStream.writeQueueFull()
method before writing. This is done automatically if using a Pump
.write
in interface WriteStream<Buffer>
data
- the data to writepublic AsyncFile setWriteQueueMaxSize(int maxSize)
WriteStream
maxSize
. You will still be able to write to the stream even
if there is more than maxSize
items in the write queue. This is used as an indicator by classes such as
Pump
to provide flow control.
The value is defined by the implementation of the stream, e.g in bytes for a
NetSocket
, the number of Message
for a
MessageProducer
, etc...setWriteQueueMaxSize
in interface WriteStream<Buffer>
maxSize
- the max size of the write streampublic AsyncFile drainHandler(Handler<Void> handler)
WriteStream
Pump
for an example of this being used.
The stream implementation defines when the drain handler, for example it could be when the queue size has been
reduced to maxSize / 2
.drainHandler
in interface WriteStream<Buffer>
handler
- the handlerpublic AsyncFile exceptionHandler(Handler<Throwable> handler)
ReadStream
exceptionHandler
in interface ReadStream<Buffer>
exceptionHandler
in interface StreamBase
exceptionHandler
in interface WriteStream<Buffer>
handler
- the exception handlerpublic AsyncFile fetch(long amount)
ReadStream
amount
of elements. If the ReadStream
has been paused, reading will
recommence with the specified amount
of items, otherwise the specified amount
will
be added to the current stream demand.fetch
in interface ReadStream<Buffer>
public void end()
close()
.end
in interface WriteStream<Buffer>
public void close()
public void close(Handler<AsyncResult<Void>> handler)
handler
- the handler@Deprecated public rx.Observable<Void> closeObservable()
rxClose()
insteadpublic rx.Single<Void> rxClose()
public AsyncFile write(Buffer buffer, long position, Handler<AsyncResult<Void>> handler)
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.
buffer
- the buffer to writeposition
- the position in the file to write it athandler
- the handler to call when the write is complete@Deprecated public rx.Observable<Void> writeObservable(Buffer buffer, long position)
rxWrite(io.vertx.rxjava.core.buffer.Buffer, long)
insteadBuffer
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.
buffer
- the buffer to writeposition
- the position in the file to write it atpublic rx.Single<Void> rxWrite(Buffer buffer, long position)
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.
buffer
- the buffer to writeposition
- the position in the file to write it atpublic AsyncFile read(Buffer buffer, int offset, long position, int length, Handler<AsyncResult<Buffer>> handler)
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
.
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.
buffer
- the buffer to read intooffset
- the offset into the buffer where the data will be readposition
- the position in the file where to start readinglength
- the number of bytes to readhandler
- the handler to call when the write is complete@Deprecated public rx.Observable<Buffer> readObservable(Buffer buffer, int offset, long position, int length)
rxRead(io.vertx.rxjava.core.buffer.Buffer, int, long, int)
insteadlength
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.
buffer
- the buffer to read intooffset
- the offset into the buffer where the data will be readposition
- the position in the file where to start readinglength
- the number of bytes to readpublic rx.Single<Buffer> rxRead(Buffer buffer, int offset, long position, int length)
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
.
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.
buffer
- the buffer to read intooffset
- the offset into the buffer where the data will be readposition
- the position in the file where to start readinglength
- the number of bytes to readpublic AsyncFile flush()
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<Void>> handler)
flush()
but the handler will be called when the flush is complete or if an error occurshandler
- @Deprecated public rx.Observable<Void> flushObservable()
rxFlush()
insteadflush()
but the handler will be called when the flush is complete or if an error occurspublic rx.Single<Void> rxFlush()
flush()
but the handler will be called when the flush is complete or if an error occurspublic AsyncFile setReadPos(long readPos)
ReadStream
.readPos
- the position in the filepublic AsyncFile setWritePos(long writePos)
WriteStream
.writePos
- the position in the filepublic long getWritePos()
public AsyncFile setReadBufferSize(int readBufferSize)
readBufferSize
- the buffer sizeCopyright © 2019 Eclipse. All rights reserved.