Class: GrpcKit::Grpc::ClientInterceptor
Instance Method Summary
collapse
-
#bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
-
#client_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
-
#request_response(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
-
#server_streamer(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Methods inherited from Interceptor
#initialize
Instance Method Details
#bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
44
45
46
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 44
def bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil)
yield
end
|
#client_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
28
29
30
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 28
def client_streamer(requests: nil, call: nil, method: nil, metadata: nil)
yield
end
|
#request_response(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
20
21
22
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 20
def request_response(request: nil, call: nil, method: nil, metadata: nil)
yield
end
|
#server_streamer(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
36
37
38
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 36
def server_streamer(request: nil, call: nil, method: nil, metadata: nil)
yield
end
|