Class AsyncFile

    • Constructor Detail

      • AsyncFile

        public AsyncFile​(AsyncFile delegate)
      • AsyncFile

        public AsyncFile​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • write

        public void write​(Buffer data)
        Same as but with an handler called when the operation completes
        Specified by:
        write in interface WriteStream<Buffer>
        Parameters:
        data -
      • rxWrite

        public rx.Single<Void> rxWrite​(Buffer data)
        Same as but with an handler called when the operation completes
        Specified by:
        rxWrite in interface WriteStream<Buffer>
        Parameters:
        data -
        Returns:
      • end

        public void end​(Buffer data)
        Same as but with an handler called when the operation completes
        Specified by:
        end in interface WriteStream<Buffer>
        Parameters:
        data -
      • rxEnd

        public rx.Single<Void> rxEnd​(Buffer data)
        Same as but with an handler called when the operation completes
        Specified by:
        rxEnd in interface WriteStream<Buffer>
        Parameters:
        data -
        Returns:
      • 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 a WriteStream.

        Specified by:
        pipe in interface ReadStream<Buffer>
        Returns:
        a pipe
      • pipeTo

        public void pipeTo​(WriteStream<Buffer> dst,
                           Handler<AsyncResult<Void>> handler)
        Pipe this 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.

        Specified by:
        pipeTo in interface ReadStream<Buffer>
        Parameters:
        dst - the destination write stream
        handler -
      • pipeTo

        public void pipeTo​(WriteStream<Buffer> dst)
        Pipe this 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.

        Specified by:
        pipeTo in interface ReadStream<Buffer>
        Parameters:
        dst - the destination write stream
      • rxPipeTo

        public rx.Single<Void> rxPipeTo​(WriteStream<Buffer> dst)
        Pipe this 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.

        Specified by:
        rxPipeTo in interface ReadStream<Buffer>
        Parameters:
        dst - the destination write stream
        Returns:
      • handler

        public AsyncFile handler​(Handler<Buffer> handler)
        Description copied from interface: ReadStream
        Set a data handler. As data is read, the handler will be called with the data.
        Specified by:
        handler in interface ReadStream<Buffer>
        Returns:
        a reference to this, so the API can be used fluently
      • pause

        public AsyncFile pause()
        Description copied from interface: ReadStream
        Pause the 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.

        Specified by:
        pause in interface ReadStream<Buffer>
        Returns:
        a reference to this, so the API can be used fluently
      • resume

        public AsyncFile resume()
        Description copied from interface: ReadStream
        Resume reading, and sets the buffer in flowing mode.

        If the ReadStream has been paused, reading will recommence on it.

        Specified by:
        resume in interface ReadStream<Buffer>
        Returns:
        a reference to this, so the API can be used fluently
      • endHandler

        public AsyncFile endHandler​(Handler<Void> endHandler)
        Description copied from interface: ReadStream
        Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.
        Specified by:
        endHandler in interface ReadStream<Buffer>
        Returns:
        a reference to this, so the API can be used fluently
      • setWriteQueueMaxSize

        public AsyncFile setWriteQueueMaxSize​(int maxSize)
        Description copied from interface: WriteStream
        Set the maximum size of the write queue to 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 Pipe to provide flow control.

        The value is defined by the implementation of the stream, e.g in bytes for a NetSocket, etc...

        Specified by:
        setWriteQueueMaxSize in interface WriteStream<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: WriteStream
        Set 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. See Pipe 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.

        Specified by:
        drainHandler in interface WriteStream<Buffer>
        Parameters:
        handler - the handler
        Returns:
        a reference to this, so the API can be used fluently
      • fetch

        public AsyncFile fetch​(long amount)
        Description copied from interface: ReadStream
        Fetch the specified 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.
        Specified by:
        fetch in interface ReadStream<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 rx.Single<Void> 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 a 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.

        Parameters:
        buffer - the buffer to write
        position - the position in the file to write it at
        handler - the handler to call when the write is complete
      • write

        public void write​(Buffer buffer,
                          long position)
        Write a 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.

        Parameters:
        buffer - the buffer to write
        position - the position in the file to write it at
      • rxWrite

        public rx.Single<Void> rxWrite​(Buffer buffer,
                                       long position)
        Write a 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.

        Parameters:
        buffer - the buffer to write
        position - 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)
        Reads 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.

        Parameters:
        buffer - the buffer to read into
        offset - the offset into the buffer where the data will be read
        position - the position in the file where to start reading
        length - the number of bytes to read
        handler - 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)
        Reads 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.

        Parameters:
        buffer - the buffer to read into
        offset - the offset into the buffer where the data will be read
        position - the position in the file where to start reading
        length - the number of bytes to read
        Returns:
        a reference to this, so the API can be used fluently
      • rxRead

        public 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.

        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.

        Parameters:
        buffer - the buffer to read into
        offset - the offset into the buffer where the data will be read
        position - the position in the file where to start reading
        length - the number of bytes to read
        Returns:
        a reference to this, so the API can be used fluently
      • setReadPos

        public AsyncFile setReadPos​(long readPos)
        Sets the position from which data will be read from when using the file as a ReadStream.
        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 a ReadStream.
        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 a WriteStream.
        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
      • 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 starts
        size - the size of the region
        shared - whether the lock should be shared
        Returns:
        the lock if it can be acquired immediately, otherwise null