class

GRPC::RawResponseStream

Inherits Reference < Object

RawResponseStream is the internal transport-level handle for sending streaming responses. It operates on raw Bytes and is used by the transport and interceptor layers. Service implementations receive the typed ResponseStream(T) instead.

Constructors

new(send_proc : Bytes -> Nil)
Source

Instance methods

send_raw(message_bytes : Bytes) : Nil

send_raw encodes one message body and pushes it to the HTTP/2 stream.

Source