Interface GrpcServerResponse<Req,Resp>
- All Superinterfaces:
GrpcWriteStream<Resp>, StreamBase, WriteStream<Resp>
-
Method Summary
Modifier and TypeMethodDescriptiondrainHandler(Handler<Void> handler) Set a drain handler on the stream.Set the stream encoding, e.g.exceptionHandler(Handler<Throwable> handler) Set an exception handler on the write stream.voidEnd the stream with an appropriate status message, whenfailureisStatusException, set status toStatusException.status()and status message toStatusException.message()UnsupportedOperationExceptionreturnsGrpcStatus.UNIMPLEMENTEDotherwise returnsGrpcStatus.UNKNOWNformat(WireFormat format) Set the stream format, e.g.send(ReadStream<Resp> body) setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.status(GrpcStatus status) Set the grpc status responsestatusMessage(String msg) Set the grpc status response messagetrailers()Send the response headers.Methods inherited from interface GrpcWriteStream
cancel, endMessage, headers, isCancelled, writeMessageMethods inherited from interface WriteStream
end, end, write, writeQueueFull
-
Method Details
-
status
Set the grpc status response- Parameters:
status- the status- Returns:
- a reference to this, so the API can be used fluently
-
statusMessage
Set the grpc status response message- Parameters:
msg- the message- Returns:
- a reference to this, so the API can be used fluently
-
encoding
Description copied from interface: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.
- Specified by:
encodingin interfaceGrpcWriteStream<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 interface:GrpcWriteStreamSet the stream format, e.g.protoorjson. It must be called before sending any message, otherwiseprotowill be used.- Specified by:
formatin interfaceGrpcWriteStream<Req>- Parameters:
format- the message format- Returns:
- a reference to this, so the API can be used fluently
-
acceptedEncodings
-
trailers
-
exceptionHandler
Description copied from interface:WriteStreamSet an exception handler on the write stream.- Specified by:
exceptionHandlerin interfaceGrpcWriteStream<Req>- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<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 interfaceGrpcWriteStream<Req>- Specified by:
setWriteQueueMaxSizein interfaceWriteStream<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 interfaceGrpcWriteStream<Req>- Specified by:
drainHandlerin interfaceWriteStream<Req>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
writeHead
-
send
-
send
-
fail
End the stream with an appropriate status message, whenfailureisStatusException, set status toStatusException.status()and status message toStatusException.message()UnsupportedOperationExceptionreturnsGrpcStatus.UNIMPLEMENTED- otherwise returns
GrpcStatus.UNKNOWN
- Parameters:
failure- the failure
-