Package io.vertx.grpc.common
Interface GrpcWriteStream<T>
-
- All Superinterfaces:
StreamBase
,WriteStream<T>
- All Known Subinterfaces:
GrpcClientRequest<Req,Resp>
,GrpcServerResponse<Req,Resp>
public interface GrpcWriteStream<T> extends WriteStream<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
Cancel the stream.GrpcWriteStream<T>
drainHandler(Handler<Void> handler)
Set a drain handler on the stream.GrpcWriteStream<T>
encoding(String encoding)
Set the stream encoding, e.g.Future<Void>
endMessage(GrpcMessage message)
End the stream with an encoded gRPC message.GrpcWriteStream<T>
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the write stream.GrpcWriteStream<T>
format(WireFormat format)
Set the stream format, e.g.MultiMap
headers()
GrpcWriteStream<T>
setWriteQueueMaxSize(int i)
Set the maximum size of the write queue tomaxSize
.Future<Void>
writeMessage(GrpcMessage message)
Write an encoded gRPC message.-
Methods inherited from interface io.vertx.core.streams.WriteStream
end, end, write, writeQueueFull
-
-
-
-
Method Detail
-
encoding
GrpcWriteStream<T> encoding(String encoding)
Set the stream encoding, e.g.identity
orgzip
. It must be called before sending any message, otherwiseidentity
will be used.- Parameters:
encoding
- the target message encoding- Returns:
- a reference to this, so the API can be used fluently
-
format
GrpcWriteStream<T> format(WireFormat format)
Set the stream format, e.g.proto
orjson
. It must be called before sending any message, otherwiseproto
will be used.- Parameters:
format
- the message format- Returns:
- a reference to this, so the API can be used fluently
-
exceptionHandler
GrpcWriteStream<T> exceptionHandler(Handler<Throwable> handler)
Description copied from interface:WriteStream
Set an exception handler on the write stream.- Specified by:
exceptionHandler
in interfaceStreamBase
- Specified by:
exceptionHandler
in interfaceWriteStream<T>
- Parameters:
handler
- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
GrpcWriteStream<T> setWriteQueueMaxSize(int i)
Description copied from interface:WriteStream
Set the maximum size of the write queue tomaxSize
. You will still be able to write to the stream even if there is more thanmaxSize
items in the write queue. This is used as an indicator by classes such asPipe
to provide flow control. The value is defined by the implementation of the stream, e.g in bytes for aNetSocket
, etc...- Specified by:
setWriteQueueMaxSize
in interfaceWriteStream<T>
- Parameters:
i
- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
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. SeePipe
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 interfaceWriteStream<T>
- Parameters:
handler
- the handler- Returns:
- a reference to this, so the API can be used fluently
-
writeMessage
Future<Void> writeMessage(GrpcMessage message)
Write an encoded gRPC message.- Parameters:
message
- the message- Returns:
- a future completed with the result
-
endMessage
Future<Void> endMessage(GrpcMessage message)
End the stream with an encoded gRPC message.- Parameters:
message
- the message- Returns:
- a future completed with the result
-
cancel
void cancel()
Cancel the stream.
-
-