Class: GrpcKit::Grpc::ServerInterceptor
Instance Method Summary
collapse
Methods inherited from Interceptor
#initialize
Instance Method Details
#bidi_streamer(requests: nil, call: nil, method: nil) ⇒ Object
77
78
79
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 77
def bidi_streamer(requests: nil, call: nil, method: nil)
yield
end
|
#client_streamer(call: nil, method: nil) ⇒ Object
63
64
65
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 63
def client_streamer(call: nil, method: nil)
yield
end
|
#request_response(request: nil, call: nil, method: nil) ⇒ Object
57
58
59
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 57
def request_response(request: nil, call: nil, method: nil)
yield
end
|
#server_streamer(request: nil, call: nil, method: nil) ⇒ Object
70
71
72
|
# File 'lib/grpc_kit/grpc/interceptor.rb', line 70
def server_streamer(request: nil, call: nil, method: nil)
yield
end
|