Class AsyncFile
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate, ReadStream<Buffer>, StreamBase, WriteStream<Buffer>
This class also implements ReadStream and
WriteStream. This allows the data to be piped to and from
other streams, e.g. an HttpClientRequest instance,
using the Pipe class
NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclose()Close the file.drainHandler(Handler<Void> handler) Set a drain handler on the stream.end()Ends the stream.Same asWriteStream.end()but writes some data to the stream before ending.endHandler(Handler<Void> endHandler) Set an end handler.booleanexceptionHandler(Handler<Throwable> handler) Set an exception handler on the read stream and on the write stream.fetch(long amount) Fetch the specifiedamountof elements.flush()Flush any writes made to this file to underlying persistent storage.longlongSet a data handler.inthashCode()lock()Acquire a non-shared lock on the entire file.lock(long position, long size, boolean shared) Acquire a lock on a portion of this file.static AsyncFilenewInstance(AsyncFile arg) pause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.pipe()Pause this stream and return a to transfer the elements of this stream to a destination .pipeTo(WriteStream<Buffer> dst) Pipe thisReadStreamto theWriteStream.Readslengthbytes of data from the file at positionpositionin the file, asynchronously.resume()Resume reading, and sets the buffer inflowingmode.rxClose()Close the file.rxEnd()Ends the stream.Same asWriteStream.end()but writes some data to the stream before ending.rxFlush()Flush any writes made to this file to underlying persistent storage.rxLock()Acquire a non-shared lock on the entire file.rxLock(long position, long size, boolean shared) Acquire a lock on a portion of this file.rxPipeTo(WriteStream<Buffer> dst) Pipe thisReadStreamto theWriteStream.Readslengthbytes of data from the file at positionpositionin the file, asynchronously.rxSize()<T> Single<T> rxWithLock(long position, long size, boolean shared, Supplier<Single<T>> block) Acquire a lock on a portion of this file.<T> Single<T> rxWithLock(Supplier<Single<T>> block) Acquire a non-shared lock on the entire file.Write some data to the stream.Write aBufferto the file at positionpositionin the file, asynchronously.setReadBufferSize(int readBufferSize) Sets the buffer size that will be used to read the data from the file.setReadLength(long readLength) Sets the number of bytes that will be read when using the file as aReadStream.setReadPos(long readPos) Sets the position from which data will be read from when using the file as aReadStream.setWritePos(long writePos) Sets the position from which data will be written when using the file as aWriteStream.setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.size()longLikesize()but blocking.toString()tryLock()Try to acquire a non-shared lock on the entire file.tryLock(long position, long size, boolean shared) Try to acquire a lock on a portion of this file.<T> Single<T> Acquire a lock on a portion of this file.<T> Single<T> Acquire a non-shared lock on the entire file.Write some data to the stream.Write aBufferto the file at positionpositionin the file, asynchronously.booleanThis will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
AsyncFile
-
AsyncFile
-
-
Method Details
-
toString
-
equals
-
hashCode
-
getDelegate
- Specified by:
getDelegatein interfaceReadStream<Buffer>- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate- Specified by:
getDelegatein interfaceStreamBase- Specified by:
getDelegatein interfaceWriteStream<Buffer>
-
toObservable
- Specified by:
toObservablein interfaceReadStream<Buffer>
-
toFlowable
- Specified by:
toFlowablein interfaceReadStream<Buffer>
-
toObserver
- Specified by:
toObserverin interfaceWriteStream<Buffer>
-
toSubscriber
- Specified by:
toSubscriberin interfaceWriteStream<Buffer>
-
pipe
Pause this stream and return a to transfer the elements of this stream to a destination . The stream will be resumed when the pipe will be wired to aWriteStream.- Specified by:
pipein interfaceReadStream<Buffer>- Returns:
- a pipe
-
pipeTo
Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
pipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
rxPipeTo
Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
rxPipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
write
Write some data to the stream.The data is usually put on an internal write queue, and the write actually happens asynchronously. To avoid running out of memory by putting too much on the write queue, check the
WriteStream.writeQueueFull()method before writing. This is done automatically if using a .When the
datais moved from the queue to the actual medium, the returned will be completed with the write result, e.g the future is succeeded when a server HTTP response buffer is written to the socket and failed if the remote client has closed the socket while the data was still pending for write.- Specified by:
writein interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the write result
-
rxWrite
Write some data to the stream.The data is usually put on an internal write queue, and the write actually happens asynchronously. To avoid running out of memory by putting too much on the write queue, check the
WriteStream.writeQueueFull()method before writing. This is done automatically if using a .When the
datais moved from the queue to the actual medium, the returned will be completed with the write result, e.g the future is succeeded when a server HTTP response buffer is written to the socket and failed if the remote client has closed the socket while the data was still pending for write.- Specified by:
rxWritein interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the write result
-
end
Ends the stream.Once the stream has ended, it cannot be used any more.
- Specified by:
endin interfaceWriteStream<Buffer>- Returns:
- a future completed with the result
-
rxEnd
Ends the stream.Once the stream has ended, it cannot be used any more.
- Specified by:
rxEndin interfaceWriteStream<Buffer>- Returns:
- a future completed with the result
-
end
Same asWriteStream.end()but writes some data to the stream before ending.- Specified by:
endin interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
rxEnd
Same asWriteStream.end()but writes some data to the stream before ending.- Specified by:
rxEndin interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
writeQueueFull
public boolean writeQueueFull()This will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)- Specified by:
writeQueueFullin interfaceWriteStream<Buffer>- Returns:
trueif write queue is full
-
handler
Description copied from interface:ReadStreamSet a data handler. As data is read, the handler will be called with the data.- Specified by:
handlerin interfaceReadStream<Buffer>- Parameters:
handler-- Returns:
- a reference to this, so the API can be used fluently
-
pause
Description copied from interface:ReadStreamPause theReadStream, it sets the buffer infetchmode and clears the actual demand.While it's paused, no data will be sent to the data
handler.- Specified by:
pausein interfaceReadStream<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
resume
Description copied from interface:ReadStreamResume reading, and sets the buffer inflowingmode. If theReadStreamhas been paused, reading will recommence on it.- Specified by:
resumein interfaceReadStream<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
Description copied from interface:ReadStreamSet an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.- Specified by:
endHandlerin interfaceReadStream<Buffer>- Parameters:
endHandler-- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
Description copied from interface:WriteStreamSet the maximum size of the write queue tomaxSize. You will still be able to write to the stream even if there is more thanmaxSizeitems in the write queue. This is used as an indicator by classes such asPipeto provide flow control. The value is defined by the implementation of the stream, e.g in bytes for aNetSocket, etc...- Specified by:
setWriteQueueMaxSizein interfaceWriteStream<Buffer>- Parameters:
maxSize- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
Description copied from interface:WriteStreamSet a drain handler on the stream. If the write queue is full, then the handler will be called when the write queue is ready to accept buffers again. SeePipefor 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.- Specified by:
drainHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
exceptionHandler
Set an exception handler on the read stream and on the write stream.- Specified by:
exceptionHandlerin interfaceReadStream<Buffer>- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
fetch
Description copied from interface:ReadStreamFetch the specifiedamountof elements. If theReadStreamhas been paused, reading will recommence with the specifiedamountof items, otherwise the specifiedamountwill be added to the current stream demand.- Specified by:
fetchin interfaceReadStream<Buffer>- Parameters:
amount-- Returns:
- a reference to this, so the API can be used fluently
-
close
Close the file. The actual close happens asynchronously.- Returns:
- a future completed with the result
-
rxClose
Close the file. The actual close happens asynchronously.- Returns:
- a future completed with the result
-
write
Write aBufferto the file at positionpositionin the file, asynchronously.If
positionlies 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
- Parameters:
buffer- the buffer to writeposition- the position in the file to write it at- Returns:
- a future notified when the write is complete
-
rxWrite
Write aBufferto the file at positionpositionin the file, asynchronously.If
positionlies 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
- Parameters:
buffer- the buffer to writeposition- the position in the file to write it at- Returns:
- a future notified when the write is complete
-
read
Readslengthbytes of data from the file at positionpositionin the file, asynchronously.The read data will be written into the specified
Buffer bufferat positionoffset.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.
- Parameters:
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 read- Returns:
- a future notified when the write is complete
-
rxRead
Readslengthbytes of data from the file at positionpositionin the file, asynchronously.The read data will be written into the specified
Buffer bufferat positionoffset.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.
- Parameters:
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 read- Returns:
- a future notified when the write is complete
-
flush
Flush any writes made to this file to underlying persistent storage.If the file was opened with
flushset totruethen calling this method will have no effect.The actual flush will happen asynchronously.
- Returns:
- a future completed with the result
-
rxFlush
Flush any writes made to this file to underlying persistent storage.If the file was opened with
flushset totruethen calling this method will have no effect.The actual flush will happen asynchronously.
- Returns:
- a future completed with the result
-
setReadPos
Sets the position from which data will be read from when using the file as aReadStream.- Parameters:
readPos- the position in the file- Returns:
- a reference to this, so the API can be used fluently
-
setReadLength
Sets the number of bytes that will be read when using the file as aReadStream.- Parameters:
readLength- the bytes that will be read from the file- Returns:
- a reference to this, so the API can be used fluently
-
getReadLength
public long getReadLength()- Returns:
- the number of bytes that will be read when using the file as a
ReadStream
-
setWritePos
Sets the position from which data will be written when using the file as aWriteStream.- Parameters:
writePos- the position in the file- Returns:
- a reference to this, so the API can be used fluently
-
getWritePos
public long getWritePos()- Returns:
- the current write position the file is at
-
setReadBufferSize
Sets the buffer size that will be used to read the data from the file. Changing this value will impact how much the data will be read at a time from the file system.- Parameters:
readBufferSize- the buffer size- Returns:
- a reference to this, so the API can be used fluently
-
sizeBlocking
-
size
-
rxSize
-
tryLock
Try to acquire a non-shared lock on the entire file.- Returns:
- the lock if it can be acquired immediately, otherwise
null
-
tryLock
Try to acquire a lock on a portion of this file.- Parameters:
position- where the region startssize- the size of the regionshared- whether the lock should be shared- Returns:
- the lock if it can be acquired immediately, otherwise
null
-
lock
Acquire a non-shared lock on the entire file.- Returns:
- a future indicating the completion of this operation
-
rxLock
Acquire a non-shared lock on the entire file.- Returns:
- a future indicating the completion of this operation
-
lock
Acquire a lock on a portion of this file.- Parameters:
position- where the region startssize- the size of the regionshared- whether the lock should be shared- Returns:
- a future indicating the completion of this operation
-
rxLock
Acquire a lock on a portion of this file.- Parameters:
position- where the region startssize- the size of the regionshared- whether the lock should be shared- Returns:
- a future indicating the completion of this operation
-
withLock
Acquire a non-shared lock on the entire file.When the
blockis called, the lock is already acquired, it will be released when theFuturereturned by the block completes.When the
blockfails, the lock is released and the returned future is failed with the cause of the failure.- Parameters:
block- the code block called after lock acquisition- Returns:
- the future returned by the
block
-
rxWithLock
Acquire a non-shared lock on the entire file.When the
blockis called, the lock is already acquired, it will be released when theFuturereturned by the block completes.When the
blockfails, the lock is released and the returned future is failed with the cause of the failure.- Parameters:
block- the code block called after lock acquisition- Returns:
- the future returned by the
block
-
withLock
Acquire a lock on a portion of this file.When the
blockis called, the lock is already acquired , it will be released when theFuturereturned by the block completes.When the
blockfails, the lock is released and the returned future is failed with the cause of the failure.- Parameters:
position- where the region startssize- the size of the regionshared- whether the lock should be sharedblock- the code block called after lock acquisition- Returns:
- the future returned by the
block
-
rxWithLock
public <T> Single<T> rxWithLock(long position, long size, boolean shared, Supplier<Single<T>> block) Acquire a lock on a portion of this file.When the
blockis called, the lock is already acquired , it will be released when theFuturereturned by the block completes.When the
blockfails, the lock is released and the returned future is failed with the cause of the failure.- Parameters:
position- where the region startssize- the size of the regionshared- whether the lock should be sharedblock- the code block called after lock acquisition- Returns:
- the future returned by the
block
-
newInstance
-