HomeSort by relevance Sort by last modified time
    Searched refs:ActiveCall (Results 1 - 7 of 7) sorted by null

  /external/grpc-grpc/src/ruby/spec/generic/
active_call_spec.rb 19 describe GRPC::ActiveCall do
20 ActiveCall = GRPC::ActiveCall
58 ActiveCall.client_invoke(call)
59 @client_call = ActiveCall.new(call, @pass_through,
64 it 'exposes a fixed subset of the ActiveCall.methods' do
76 it 'exposes a fixed subset of the ActiveCall.methods' do
88 it 'exposes a fixed subset of the ActiveCall.methods' do
101 ActiveCall.client_invoke(call)
102 client_call = ActiveCall.new(call, @pass_through
    [all...]
client_interceptors_spec.rb 34 expect_any_instance_of(GRPC::ActiveCall).to receive(:request_response)
46 expect_any_instance_of(GRPC::ActiveCall).to receive(:request_response)
61 expect_any_instance_of(GRPC::ActiveCall).to receive(:client_streamer)
75 expect_any_instance_of(GRPC::ActiveCall).to receive(:client_streamer)
91 expect_any_instance_of(GRPC::ActiveCall).to receive(:server_streamer)
107 expect_any_instance_of(GRPC::ActiveCall).to receive(:server_streamer)
125 expect_any_instance_of(GRPC::ActiveCall).to receive(:bidi_streamer)
142 expect_any_instance_of(GRPC::ActiveCall).to receive(:bidi_streamer)
server_interceptors_spec.rb 51 expect_any_instance_of(GRPC::ActiveCall).to(
86 expect_any_instance_of(GRPC::ActiveCall).to(
124 expect_any_instance_of(GRPC::ActiveCall).to(
164 expect_any_instance_of(GRPC::ActiveCall).to(
client_stub_spec.rb 316 expect(@op).to be_a(GRPC::ActiveCall::Operation)
415 expect(@op).to be_a(GRPC::ActiveCall::Operation)
556 expect(@op).to be_a(GRPC::ActiveCall::Operation)
685 server_call = GRPC::ActiveCall.new(
790 server_call = GRPC::ActiveCall.new(
828 server_call = GRPC::ActiveCall.new(
875 expect(@op).to be_a(GRPC::ActiveCall::Operation)
    [all...]
  /external/grpc-grpc/src/ruby/lib/grpc/generic/
rpc_server.rb 365 c = ActiveCall.new(an_rpc.call, noop, noop, an_rpc.deadline,
381 c = ActiveCall.new(an_rpc.call, noop, noop, an_rpc.deadline,
440 # Create the ActiveCall. Indicate that metadata hasnt been sent yet.
443 c = ActiveCall.new(an_rpc.call,
active_call.rb 41 # The ActiveCall class provides simple methods for sending marshallable
43 class ActiveCall # rubocop:disable Metrics/ClassLength
69 # Creates an ActiveCall.
71 # ActiveCall should only be created after a call is accepted. That
78 # the ActiveCall methods are called.
82 # @param call [Call] the call used by the ActiveCall
123 ActiveCall.client_invoke(@call, @metadata_to_send)
139 # multi_req_view provides a restricted view of this ActiveCall for use
145 # single_req_view provides a restricted view of this ActiveCall for use in
151 # operation provides a restricted view of this ActiveCall for use a
    [all...]
client_stub.rb 497 ActiveCall.new(call, marshal, unmarshal, deadline,

Completed in 422 milliseconds