GRPC::Transport::Http2ClientConnection
Inherits GRPC::Transport::ClientTransport < GRPC::Transport::Http2Connection < Reference < Object
Http2ClientConnection manages one HTTP/2 connection from a gRPC client.
Constants
Constructors
Instance methods
open_bidi_stream_live opens a true full-duplex bidi stream. Returns a RawBidiCall whose send_raw / close_send / each methods let the caller interleave sends and receives freely. send_queue_size limits how many outgoing frames may be buffered before send_raw blocks the calling fiber (0 = unbounded).
open_client_stream_live opens a live client-streaming RPC. Returns a RawClientCall whose send_raw / close_and_recv methods let the caller send messages incrementally; the server's single response arrives after close_and_recv returns. send_queue_size limits how many outgoing frames may be buffered before send_raw blocks the calling fiber (0 = unbounded).