Class GrpcReadStream<T>

    • Constructor Detail

      • GrpcReadStream

        public GrpcReadStream​(Object delegate,
                              TypeArg<T> typeArg_0)
    • Method Detail

      • hashCode

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

        public io.reactivex.Observable<T> toObservable()
        Specified by:
        toObservable in interface ReadStream<T>
      • toFlowable

        public io.reactivex.Flowable<T> toFlowable()
        Specified by:
        toFlowable in interface ReadStream<T>
      • pipe

        public Pipe<T> 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<T>
        Returns:
        a pipe
      • pipeTo

        public void pipeTo​(WriteStream<T> 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<T>
        Parameters:
        dst - the destination write stream
        handler -
      • pipeTo

        public void pipeTo​(WriteStream<T> 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<T>
        Parameters:
        dst - the destination write stream
      • rxPipeTo

        public io.reactivex.Completable rxPipeTo​(WriteStream<T> 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<T>
        Parameters:
        dst - the destination write stream
        Returns:
      • headers

        public MultiMap headers()
        Returns:
        the to read metadata headers
      • encoding

        public String encoding()
        Returns:
        the stream encoding, e.g identity or gzip
      • messageHandler

        public GrpcReadStream<T> messageHandler​(Handler<GrpcMessage> handler)
        Set a handler to be notified with incoming encoded messages. The handler is responsible for fully decoding incoming messages, including compression.
        Parameters:
        handler - the message handler
        Returns:
        a reference to this, so the API can be used fluently
      • errorHandler

        public GrpcReadStream<T> errorHandler​(Handler<GrpcError> handler)
        Set a handler to be notified with gRPC errors.
        Parameters:
        handler - the error handler
        Returns:
        a reference to this, so the API can be used fluently
      • handler

        public GrpcReadStream<T> handler​(Handler<T> 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<T>
        Returns:
        a reference to this, so the API can be used fluently
      • pause

        public GrpcReadStream<T> 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<T>
        Returns:
        a reference to this, so the API can be used fluently
      • resume

        public GrpcReadStream<T> 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<T>
        Returns:
        a reference to this, so the API can be used fluently
      • fetch

        public GrpcReadStream<T> fetch​(long l)
        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<T>
        Returns:
        a reference to this, so the API can be used fluently
      • endHandler

        public GrpcReadStream<T> endHandler​(Handler<Void> handler)
        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<T>
        Returns:
        a reference to this, so the API can be used fluently
      • last

        public Future<T> last()
        Returns:
        the last element of the stream
      • rxLast

        public io.reactivex.Single<T> rxLast()
        Returns:
        the last element of the stream
      • end

        public Future<Void> end()
        Returns:
        a future signaling when the response has been fully received successfully or failed
      • rxEnd

        public io.reactivex.Completable rxEnd()
        Returns:
        a future signaling when the response has been fully received successfully or failed
      • collecting

        public <R,​A> Future<R> collecting​(Collector<T,​A,​R> collector)
        Parameters:
        collector -
        Returns:
        the result of applying a collector on the stream
      • rxCollecting

        public <R,​A> io.reactivex.Single<R> rxCollecting​(Collector<T,​A,​R> collector)
        Parameters:
        collector -
        Returns:
        the result of applying a collector on the stream