GRPC::BidiCall(Req, Res)
Inherits Enumerable < Reference < Object
BidiCall(Req, Res) is the client handle for a bidirectional streaming RPC. The client sends and receives messages concurrently.
Example: call = client.chat spawn do messages.each { |msg| call.send(msg) } call.close_send end call.each { |reply| pp reply }
Constructors
Instance methods
cancel
Sourceheaders
Sourcestatus
Sourcetrailers
Source