Class GrpcWriteStream<T>

    • Constructor Detail

      • GrpcWriteStream

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

      • hashCode

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

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

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

        public io.reactivex.Completable rxWrite​(T data)
        Same as but with an handler called when the operation completes
        Specified by:
        rxWrite in interface WriteStream<T>
        Parameters:
        data -
        Returns:
      • end

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

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

        public io.reactivex.Completable rxEnd​(T data)
        Same as but with an handler called when the operation completes
        Specified by:
        rxEnd in interface WriteStream<T>
        Parameters:
        data -
        Returns:
      • writeQueueFull

        public boolean writeQueueFull()
        This will return true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize(int)
        Specified by:
        writeQueueFull in interface WriteStream<T>
        Returns:
        true if write queue is full
      • headers

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

        public GrpcWriteStream<T> encoding​(String encoding)
        Set the stream encoding, e.g identity or gzip. It must be called before sending any message, otherwise {@code identity will be used.
        Parameters:
        encoding - the target message encoding
        Returns:
        a reference to this, so the API can be used fluently
      • setWriteQueueMaxSize

        public GrpcWriteStream<T> setWriteQueueMaxSize​(int i)
        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<T>
        Parameters:
        i - the max size of the write stream
        Returns:
        a reference to this, so the API can be used fluently
      • drainHandler

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

        public Future<Void> writeMessage​(GrpcMessage message)
        Write an encoded gRPC message.
        Parameters:
        message - the message
        Returns:
        a future completed with the result
      • rxWriteMessage

        public io.reactivex.Completable rxWriteMessage​(GrpcMessage message)
        Write an encoded gRPC message.
        Parameters:
        message - the message
        Returns:
        a future completed with the result
      • endMessage

        public Future<Void> endMessage​(GrpcMessage message)
        End the stream with an encoded gRPC message.
        Parameters:
        message - the message
        Returns:
        a future completed with the result
      • rxEndMessage

        public io.reactivex.Completable rxEndMessage​(GrpcMessage message)
        End the stream with an encoded gRPC message.
        Parameters:
        message - the message
        Returns:
        a future completed with the result
      • cancel

        public void cancel()
        Cancel the stream.