Class GrpcWriteStream<T>
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate, StreamBase, WriteStream<T>
- Direct Known Subclasses:
GrpcClientRequest, GrpcServerResponse
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<GrpcWriteStream> final io.vertx.lang.rx.TypeArg<T> -
Constructor Summary
ConstructorsConstructorDescriptionGrpcWriteStream(GrpcWriteStream delegate) GrpcWriteStream(Object delegate, io.vertx.lang.rx.TypeArg<T> typeArg_0) -
Method Summary
Modifier and TypeMethodDescriptionvoidcancel()Cancel the stream.drainHandler(Handler<Void> handler) Set a drain handler on the stream.Set the stream encoding, e.g.end()Ends the stream.Same asWriteStream.end()but writes some data to the stream before ending.endMessage(GrpcMessage message) End the stream with an encoded gRPC message.booleanexceptionHandler(Handler<Throwable> handler) Set an exception handler on the write stream.format(WireFormat format) Set the stream format, e.g.inthashCode()headers()booleanstatic <T> GrpcWriteStream<T> static <T> GrpcWriteStream<T> newInstance(GrpcWriteStream arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) rxEnd()Ends the stream.Same asWriteStream.end()but writes some data to the stream before ending.rxEndMessage(GrpcMessage message) End the stream with an encoded gRPC message.Write some data to the stream.rxWriteMessage(GrpcMessage message) Write an encoded gRPC message.setWriteQueueMaxSize(int i) Set the maximum size of the write queue tomaxSize.toString()Write some data to the stream.writeMessage(GrpcMessage message) Write an encoded gRPC message.booleanThis will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
-
Constructor Details
-
GrpcWriteStream
-
GrpcWriteStream
-
-
Method Details
-
toString
-
equals
-
hashCode
-
getDelegate
- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate- Specified by:
getDelegatein interfaceStreamBase- Specified by:
getDelegatein interfaceWriteStream<T>
-
toObserver
- Specified by:
toObserverin interfaceWriteStream<T>
-
toSubscriber
- Specified by:
toSubscriberin interfaceWriteStream<T>
-
write
Write some data to the stream.The data is usually put on an internal write queue, and the write actually happens asynchronously. To avoid running out of memory by putting too much on the write queue, check the
WriteStream.writeQueueFull()method before writing. This is done automatically if using a .When the
datais moved from the queue to the actual medium, the returned will be completed with the write result, e.g the future is succeeded when a server HTTP response buffer is written to the socket and failed if the remote client has closed the socket while the data was still pending for write.- Specified by:
writein interfaceWriteStream<T>- Parameters:
data- the data to write- Returns:
- a future completed with the write result
-
rxWrite
Write some data to the stream.The data is usually put on an internal write queue, and the write actually happens asynchronously. To avoid running out of memory by putting too much on the write queue, check the
WriteStream.writeQueueFull()method before writing. This is done automatically if using a .When the
datais moved from the queue to the actual medium, the returned will be completed with the write result, e.g the future is succeeded when a server HTTP response buffer is written to the socket and failed if the remote client has closed the socket while the data was still pending for write.- Specified by:
rxWritein interfaceWriteStream<T>- Parameters:
data- the data to write- Returns:
- a future completed with the write result
-
end
Ends the stream.Once the stream has ended, it cannot be used any more.
- Specified by:
endin interfaceWriteStream<T>- Returns:
- a future completed with the result
-
rxEnd
Ends the stream.Once the stream has ended, it cannot be used any more.
- Specified by:
rxEndin interfaceWriteStream<T>- Returns:
- a future completed with the result
-
end
Same asWriteStream.end()but writes some data to the stream before ending.- Specified by:
endin interfaceWriteStream<T>- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
rxEnd
Same asWriteStream.end()but writes some data to the stream before ending.- Specified by:
rxEndin interfaceWriteStream<T>- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
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<T>- Returns:
trueif write queue is full
-
headers
- Returns:
- the to reader metadata headers
-
encoding
Set the stream encoding, e.g.
identityorgzip,- The encoding must be set before sending any message, otherwise
identitywill be used. - The encoding should also match the opposite endpoint expectations.
- Parameters:
encoding- the target message encoding- Returns:
- a reference to this, so the API can be used fluently
- The encoding must be set before sending any message, otherwise
-
format
Set the stream format, e.g.protoorjson. It must be called before sending any message, otherwiseprotowill be used.- Parameters:
format- the message format- Returns:
- a reference to this, so the API can be used fluently
-
exceptionHandler
Description copied from interface:WriteStreamSet an exception handler on the write stream.- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<T>- Parameters:
handler- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
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<T>- Parameters:
i- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
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<T>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
writeMessage
Write an encoded gRPC message.- Parameters:
message- the message- Returns:
- a future completed with the result
-
rxWriteMessage
Write an encoded gRPC message.- Parameters:
message- the message- Returns:
- a future completed with the result
-
endMessage
End the stream with an encoded gRPC message.- Parameters:
message- the message- Returns:
- a future completed with the result
-
rxEndMessage
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. -
isCancelled
public boolean isCancelled()- Returns:
- whether the stream is cancelled
-
newInstance
-
newInstance
public static <T> GrpcWriteStream<T> newInstance(GrpcWriteStream arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
-