Class GrpcClientRequest<Req,Resp>
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate, StreamBase, WriteStream<Req>
You interact with the remote service with gRPC generated messages or protobuf encoded messages.
Before sending a request you need to set #serviceName) and #methodName) or
alternatively the service fullMethodName(String).
Writing a request message will send the request to the service:
- To send a unary request, just call
- To send a streaming request, call any time you need and then
WriteStream.end()
NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<GrpcClientRequest> final io.vertx.lang.rx.TypeArg<Req> final io.vertx.lang.rx.TypeArg<Resp> -
Constructor Summary
ConstructorsConstructorDescriptionGrpcClientRequest(GrpcClientRequest delegate) GrpcClientRequest(Object delegate, io.vertx.lang.rx.TypeArg<Req> typeArg_0, io.vertx.lang.rx.TypeArg<Resp> typeArg_1) -
Method Summary
Modifier and TypeMethodDescriptiondeadline()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.booleanexceptionHandler(Handler<Throwable> handler) Set an exception handler on the write stream.format(WireFormat format) Set the stream format, e.g.fullMethodName(String fullMethodName) Set the full method name to call, it must follow the formatpackage-name + '.' + service-name + '/' + method-nameor anIllegalArgumentExceptionis thrown.inthashCode()idleTimeout(long timeout) Sets the amount of time after which, if the request does not return any data within the timeout period, the request/response is cancelled and the related futures.methodName(String methodName) Set the method name to call.static <Req,Resp> GrpcClientRequest <Req, Resp> static <Req,Resp> GrpcClientRequest <Req, Resp> newInstance(GrpcClientRequest arg, io.vertx.lang.rx.TypeArg<Req> __typeArg_Req, io.vertx.lang.rx.TypeArg<Resp> __typeArg_Resp) response()rxEnd()Ends the stream.Same asWriteStream.end()but writes some data to the stream before ending.rxSend(ReadStream<Req> body) Write some data to the stream.send(ReadStream<Req> body) serviceName(ServiceName serviceName) Set the service name to call.setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.Set agrpc-timeoutheader to be sent to the server to indicate the client expects a response with a timeout.toString()Write some data to the stream.booleanThis will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)Methods inherited from class GrpcWriteStream
cancel, endMessage, headers, isCancelled, newInstance, newInstance, rxEndMessage, rxWriteMessage, writeMessage
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
__typeArg_1
-
-
Constructor Details
-
GrpcClientRequest
-
GrpcClientRequest
-
-
Method Details
-
toString
- Overrides:
toStringin classGrpcWriteStream<Req>
-
equals
- Overrides:
equalsin classGrpcWriteStream<Req>
-
hashCode
public int hashCode()- Overrides:
hashCodein classGrpcWriteStream<Req>
-
getDelegate
- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate- Specified by:
getDelegatein interfaceStreamBase- Specified by:
getDelegatein interfaceWriteStream<Req>- Overrides:
getDelegatein classGrpcWriteStream<Req>
-
toObserver
- Specified by:
toObserverin interfaceWriteStream<Req>- Overrides:
toObserverin classGrpcWriteStream<Req>
-
toSubscriber
- Specified by:
toSubscriberin interfaceWriteStream<Req>- Overrides:
toSubscriberin classGrpcWriteStream<Req>
-
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<Req>- Overrides:
writein classGrpcWriteStream<Req>- 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<Req>- Overrides:
rxWritein classGrpcWriteStream<Req>- 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<Req>- Overrides:
endin classGrpcWriteStream<Req>- 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<Req>- Overrides:
rxEndin classGrpcWriteStream<Req>- Returns:
- a future completed with the result
-
end
Same asWriteStream.end()but writes some data to the stream before ending.- Specified by:
endin interfaceWriteStream<Req>- Overrides:
endin classGrpcWriteStream<Req>- 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<Req>- Overrides:
rxEndin classGrpcWriteStream<Req>- 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<Req>- Overrides:
writeQueueFullin classGrpcWriteStream<Req>- Returns:
trueif write queue is full
-
encoding
Description copied from class:GrpcWriteStreamSet 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.
- Overrides:
encodingin classGrpcWriteStream<Req>- 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
Description copied from class:GrpcWriteStreamSet the stream format, e.g.protoorjson. It must be called before sending any message, otherwiseprotowill be used.- Overrides:
formatin classGrpcWriteStream<Req>- Parameters:
format- the message format- Returns:
- a reference to this, so the API can be used fluently
-
fullMethodName
Set the full method name to call, it must follow the formatpackage-name + '.' + service-name + '/' + method-nameor anIllegalArgumentExceptionis thrown.It must be called before sending the request otherwise an
IllegalStateExceptionis thrown.- Parameters:
fullMethodName- the full method name to call- Returns:
- a reference to this, so the API can be used fluently
-
serviceName
Set the service name to call.It must be called before sending the request otherwise an
IllegalStateExceptionis thrown.- Parameters:
serviceName- the service name to call- Returns:
- a reference to this, so the API can be used fluently
-
methodName
Set the method name to call.It must be called before sending the request otherwise an
IllegalStateExceptionis thrown.- Parameters:
methodName- the method name to call- Returns:
- a reference to this, so the API can be used fluently
-
response
- Returns:
- the gRPC response
-
rxResponse
- Returns:
- the gRPC response
-
exceptionHandler
Description copied from interface:WriteStreamSet an exception handler on the write stream.- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<Req>- Overrides:
exceptionHandlerin classGrpcWriteStream<Req>- 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<Req>- Overrides:
setWriteQueueMaxSizein classGrpcWriteStream<Req>- Parameters:
maxSize- 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<Req>- Overrides:
drainHandlerin classGrpcWriteStream<Req>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
timeout
Set a
grpc-timeoutheader to be sent to the server to indicate the client expects a response with a timeout.When the request handle deadline a timer will be set when sending the request to cancel the request when the response has not been received in time.
- Parameters:
timeout-unit-- Returns:
-
deadline
- Returns:
- the request deadline or
nullwhen no deadline has been scheduled
-
idleTimeout
Sets the amount of time after which, if the request does not return any data within the timeout period, the request/response is cancelled and the related futures.- Parameters:
timeout- the amount of time in milliseconds.- Returns:
- a reference to this, so the API can be used fluently
-
connection
- Returns:
- the underlying HTTP connection
-
send
-
rxSend
-
send
-
rxSend
-
send
-
rxSend
-
newInstance
-
newInstance
public static <Req,Resp> GrpcClientRequest<Req,Resp> newInstance(GrpcClientRequest arg, io.vertx.lang.rx.TypeArg<Req> __typeArg_Req, io.vertx.lang.rx.TypeArg<Resp> __typeArg_Resp)
-