Class AsyncFile
- java.lang.Object
-
- io.vertx.reactivex.core.file.AsyncFile
-
- All Implemented Interfaces:
ReadStream<Buffer>,StreamBase,WriteStream<Buffer>
public class AsyncFile extends Object implements ReadStream<Buffer>, WriteStream<Buffer>
Represents a file on the file-system which can be read from, or written to asynchronously.This class also implements
NOTE: This class has been automatically generated from theReadStreamandWriteStream. This allows the data to be piped to and from other streams, e.g. anHttpClientRequestinstance, using thePipeclassoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<AsyncFile>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close the file.voidclose(Handler<AsyncResult<Void>> handler)Close the file.AsyncFiledrainHandler(Handler<Void> handler)Set a drain handler on the stream.voidend()Same asWriteStream.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completesvoidend(Handler<AsyncResult<Void>> handler)Same asWriteStream.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completesvoidend(Buffer data)Same as but with anhandlercalled when the operation completesvoidend(Buffer data, Handler<AsyncResult<Void>> handler)Same as but with anhandlercalled when the operation completesAsyncFileendHandler(Handler<Void> endHandler)Set an end handler.booleanequals(Object o)AsyncFileexceptionHandler(Handler<Throwable> handler)Set an exception handler on the read stream.AsyncFilefetch(long amount)Fetch the specifiedamountof elements.AsyncFileflush()Same asflush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but the handler will be called when the flush is complete or if an error occursAsyncFileflush(Handler<AsyncResult<Void>> handler)Same asflush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but the handler will be called when the flush is complete or if an error occursAsyncFilegetDelegate()longgetReadLength()longgetWritePos()AsyncFilehandler(Handler<Buffer> handler)Set a data handler.inthashCode()voidlock()Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.voidlock(long position, long size, boolean shared)Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.voidlock(long position, long size, boolean shared, Handler<AsyncResult<AsyncFileLock>> handler)Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.voidlock(Handler<AsyncResult<AsyncFileLock>> handler)Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.static AsyncFilenewInstance(AsyncFile arg)AsyncFilepause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.Pipe<Buffer>pipe()Pause this stream and return a to transfer the elements of this stream to a destination .voidpipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.voidpipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)Pipe thisReadStreamto theWriteStream.AsyncFileread(Buffer buffer, int offset, long position, int length)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.AsyncFileread(Buffer buffer, int offset, long position, int length, Handler<AsyncResult<Buffer>> handler)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.AsyncFileresume()Resume reading, and sets the buffer inflowingmode.io.reactivex.CompletablerxClose()Close the file.io.reactivex.CompletablerxEnd()Same asWriteStream.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completesio.reactivex.CompletablerxEnd(Buffer data)Same as but with anhandlercalled when the operation completesio.reactivex.CompletablerxFlush()Same asflush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but the handler will be called when the flush is complete or if an error occursio.reactivex.Single<AsyncFileLock>rxLock()Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.io.reactivex.Single<AsyncFileLock>rxLock(long position, long size, boolean shared)Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.io.reactivex.CompletablerxPipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.reactivex.Single<Buffer>rxRead(Buffer buffer, int offset, long position, int length)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.io.reactivex.Single<Long>rxSize()Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but thehandlerwill be called when the operation is complete or if an error occurs.io.reactivex.CompletablerxWrite(Buffer data)Same as but with anhandlercalled when the operation completesio.reactivex.CompletablerxWrite(Buffer buffer, long position)Write aBufferto the file at positionpositionin the file, asynchronously.AsyncFilesetReadBufferSize(int readBufferSize)Sets the buffer size that will be used to read the data from the file.AsyncFilesetReadLength(long readLength)Sets the number of bytes that will be read when using the file as aReadStream.AsyncFilesetReadPos(long readPos)Sets the position from which data will be read from when using the file as aReadStream.AsyncFilesetWritePos(long writePos)Sets the position from which data will be written when using the file as aWriteStream.AsyncFilesetWriteQueueMaxSize(int maxSize)Set the maximum size of the write queue tomaxSize.voidsize()Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but thehandlerwill be called when the operation is complete or if an error occurs.voidsize(Handler<AsyncResult<Long>> handler)Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but thehandlerwill be called when the operation is complete or if an error occurs.longsizeBlocking()Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but blocking.io.reactivex.Flowable<Buffer>toFlowable()io.reactivex.Observable<Buffer>toObservable()WriteStreamObserver<Buffer>toObserver()StringtoString()WriteStreamSubscriber<Buffer>toSubscriber()AsyncFileLocktryLock()Try to acquire a non-shared lock on the entire file.AsyncFileLocktryLock(long position, long size, boolean shared)Try to acquire a lock on a portion of this file.voidwrite(Buffer data)Same as but with anhandlercalled when the operation completesvoidwrite(Buffer buffer, long position)Write aBufferto the file at positionpositionin the file, asynchronously.voidwrite(Buffer buffer, long position, Handler<AsyncResult<Void>> handler)Write aBufferto the file at positionpositionin the file, asynchronously.voidwrite(Buffer data, Handler<AsyncResult<Void>> handler)Same as but with anhandlercalled when the operation completesbooleanwriteQueueFull()This will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)
-
-
-
Method Detail
-
getDelegate
public AsyncFile getDelegate()
- Specified by:
getDelegatein interfaceReadStream<Buffer>- Specified by:
getDelegatein interfaceStreamBase- Specified by:
getDelegatein interfaceWriteStream<Buffer>
-
toObservable
public io.reactivex.Observable<Buffer> toObservable()
- Specified by:
toObservablein interfaceReadStream<Buffer>
-
toFlowable
public io.reactivex.Flowable<Buffer> toFlowable()
- Specified by:
toFlowablein interfaceReadStream<Buffer>
-
toObserver
public WriteStreamObserver<Buffer> toObserver()
-
toSubscriber
public WriteStreamSubscriber<Buffer> toSubscriber()
-
write
public void write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandlercalled when the operation completes- Specified by:
writein interfaceWriteStream<Buffer>- Parameters:
data-handler-
-
write
public void write(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
writein interfaceWriteStream<Buffer>- Parameters:
data-
-
rxWrite
public io.reactivex.Completable rxWrite(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
rxWritein interfaceWriteStream<Buffer>- Parameters:
data-- Returns:
-
end
public void end(Handler<AsyncResult<Void>> handler)
Same asWriteStream.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes- Specified by:
endin interfaceWriteStream<Buffer>- Parameters:
handler-
-
end
public void end()
Same asWriteStream.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes- Specified by:
endin interfaceWriteStream<Buffer>
-
rxEnd
public io.reactivex.Completable rxEnd()
Same asWriteStream.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes- Specified by:
rxEndin interfaceWriteStream<Buffer>- Returns:
-
end
public void end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandlercalled when the operation completes- Specified by:
endin interfaceWriteStream<Buffer>- Parameters:
data-handler-
-
end
public void end(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
endin interfaceWriteStream<Buffer>- Parameters:
data-
-
rxEnd
public io.reactivex.Completable rxEnd(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
rxEndin interfaceWriteStream<Buffer>- Parameters:
data-- Returns:
-
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
-
pipe
public Pipe<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
public void pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStreamto theWriteStream.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
handlerwill be called with the result.- Specified by:
pipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write streamhandler-
-
pipeTo
public void pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStreamto theWriteStream.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
handlerwill be called with the result.- Specified by:
pipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write stream
-
rxPipeTo
public io.reactivex.Completable rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStreamto theWriteStream.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
handlerwill be called with the result.- Specified by:
rxPipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write stream- Returns:
-
handler
public AsyncFile handler(Handler<Buffer> 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>- Returns:
- a reference to this, so the API can be used fluently
-
pause
public AsyncFile 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
public AsyncFile 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
public AsyncFile endHandler(Handler<Void> 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>- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
public AsyncFile setWriteQueueMaxSize(int maxSize)
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
public AsyncFile drainHandler(Handler<Void> handler)
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
public AsyncFile exceptionHandler(Handler<Throwable> handler)
Description copied from interface:ReadStreamSet an exception handler on the read stream.- Specified by:
exceptionHandlerin interfaceReadStream<Buffer>- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
fetch
public AsyncFile fetch(long amount)
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>- Returns:
- a reference to this, so the API can be used fluently
-
close
public void close(Handler<AsyncResult<Void>> handler)
Close the file. The actual close happens asynchronously. The handler will be called when the close is complete, or an error occurs.- Parameters:
handler- the handler
-
close
public void close()
Close the file. The actual close happens asynchronously. The handler will be called when the close is complete, or an error occurs.
-
rxClose
public io.reactivex.Completable rxClose()
Close the file. The actual close happens asynchronously. The handler will be called when the close is complete, or an error occurs.- Returns:
-
write
public void write(Buffer buffer, long position, Handler<AsyncResult<Void>> handler)
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
The handler will be called when the write is complete, or if an error occurs.
- Parameters:
buffer- the buffer to writeposition- the position in the file to write it athandler- the handler to call when the write is complete
-
write
public void write(Buffer buffer, long position)
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
The handler will be called when the write is complete, or if an error occurs.
- Parameters:
buffer- the buffer to writeposition- the position in the file to write it at
-
rxWrite
public io.reactivex.Completable rxWrite(Buffer buffer, long position)
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
The handler will be called when the write is complete, or if an error occurs.
- Parameters:
buffer- the buffer to writeposition- the position in the file to write it at- Returns:
-
read
public AsyncFile read(Buffer buffer, int offset, long position, int length, Handler<AsyncResult<Buffer>> handler)
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.
The handler will be called when the close is complete, or if an error occurs.
- 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 readhandler- the handler to call when the write is complete- Returns:
- a reference to this, so the API can be used fluently
-
read
public AsyncFile read(Buffer buffer, int offset, long position, int length)
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.
The handler will be called when the close is complete, or if an error occurs.
- 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 reference to this, so the API can be used fluently
-
rxRead
public io.reactivex.Single<Buffer> rxRead(Buffer buffer, int offset, long position, int length)
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.
The handler will be called when the close is complete, or if an error occurs.
- 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 reference to this, so the API can be used fluently
-
flush
public AsyncFile flush(Handler<AsyncResult<Void>> handler)
Same asflush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but the handler will be called when the flush is complete or if an error occurs- Parameters:
handler-- Returns:
-
flush
public AsyncFile flush()
Same asflush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but the handler will be called when the flush is complete or if an error occurs- Returns:
-
rxFlush
public io.reactivex.Completable rxFlush()
Same asflush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but the handler will be called when the flush is complete or if an error occurs- Returns:
-
setReadPos
public AsyncFile setReadPos(long readPos)
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
public AsyncFile setReadLength(long readLength)
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
public AsyncFile setWritePos(long writePos)
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
public AsyncFile setReadBufferSize(int readBufferSize)
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
public long sizeBlocking()
Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but blocking.- Returns:
-
size
public void size(Handler<AsyncResult<Long>> handler)
Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Parameters:
handler-
-
size
public void size()
Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but thehandlerwill be called when the operation is complete or if an error occurs.
-
rxSize
public io.reactivex.Single<Long> rxSize()
Likesize(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Returns:
-
tryLock
public AsyncFileLock tryLock()
Try to acquire a non-shared lock on the entire file.- Returns:
- the lock if it can be acquired immediately, otherwise
null
-
tryLock
public AsyncFileLock tryLock(long position, long size, boolean shared)
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
public void lock(Handler<AsyncResult<AsyncFileLock>> handler)
Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Parameters:
handler-
-
lock
public void lock()
Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.
-
rxLock
public io.reactivex.Single<AsyncFileLock> rxLock()
Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Returns:
-
lock
public void lock(long position, long size, boolean shared, Handler<AsyncResult<AsyncFileLock>> handler)Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Parameters:
position-size-shared-handler-
-
lock
public void lock(long position, long size, boolean shared)Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Parameters:
position-size-shared-
-
rxLock
public io.reactivex.Single<AsyncFileLock> rxLock(long position, long size, boolean shared)
Likelock(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.file.AsyncFileLock>>)but thehandlerwill be called when the operation is complete or if an error occurs.- Parameters:
position-size-shared-- Returns:
-
-