Interface WriteStream<T>

    • Method Detail

      • exceptionHandler

        WriteStream<T> exceptionHandler​(Handler<Throwable> handler)
        Set an exception handler on the write stream.
        Specified by:
        exceptionHandler in interface StreamBase
        Parameters:
        handler - the exception handler
        Returns:
        a reference to this, so the API can be used fluently
      • write

        void write​(T data,
                   Handler<AsyncResult<Void>> handler)
        Same as but with an handler called when the operation completes
        Parameters:
        data -
        handler -
      • write

        void write​(T data)
        Same as but with an handler called when the operation completes
        Parameters:
        data -
      • rxWrite

        io.reactivex.Completable rxWrite​(T data)
        Same as but with an handler called when the operation completes
        Parameters:
        data -
        Returns:
      • end

        void end​(T data,
                 Handler<AsyncResult<Void>> handler)
        Same as but with an handler called when the operation completes
        Parameters:
        data -
        handler -
      • end

        void end​(T data)
        Same as but with an handler called when the operation completes
        Parameters:
        data -
      • rxEnd

        io.reactivex.Completable rxEnd​(T data)
        Same as but with an handler called when the operation completes
        Parameters:
        data -
        Returns:
      • setWriteQueueMaxSize

        WriteStream<T> setWriteQueueMaxSize​(int maxSize)
        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...

        Parameters:
        maxSize - the max size of the write stream
        Returns:
        a reference to this, so the API can be used fluently
      • writeQueueFull

        boolean writeQueueFull()
        This will return true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int)
        Returns:
        true if write queue is full
      • drainHandler

        WriteStream<T> drainHandler​(Handler<Void> handler)
        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.

        Parameters:
        handler - the handler
        Returns:
        a reference to this, so the API can be used fluently