Class: Gruf::Interceptors::ClientInterceptor
- Inherits:
-
GRPC::ClientInterceptor
- Object
- GRPC::ClientInterceptor
- Gruf::Interceptors::ClientInterceptor
- Includes:
- Loggable
- Defined in:
- lib/gruf/interceptors/client_interceptor.rb
Overview
Intercepts outbound client requests to provide a unified interface and request context
Instance Method Summary collapse
-
#bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the bidi_streamer call.
-
#call(request_context:) ⇒ Object
Handles interception of outbound calls.
-
#client_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the client_streamer call.
-
#request_response(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the request_response call.
-
#server_streamer(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the server_streamer call.
Methods included from Loggable
Instance Method Details
#bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the bidi_streamer call
91 92 93 94 95 96 |
# File 'lib/gruf/interceptors/client_interceptor.rb', line 91 def bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil) rc = Gruf::Outbound::RequestContext.new(type: :bidi_streamer, requests: requests, call: call, method: method, metadata: ) call(request_context: rc) do yield end end |
#call(request_context:) ⇒ Object
Handles interception of outbound calls. Implement this in your derivative interceptor implementation.
30 31 32 33 |
# File 'lib/gruf/interceptors/client_interceptor.rb', line 30 def call(request_context:) logger.debug "Logging client interceptor for request: #{request_context.method}" yield end |
#client_streamer(requests: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the client_streamer call
60 61 62 63 64 65 |
# File 'lib/gruf/interceptors/client_interceptor.rb', line 60 def client_streamer(requests: nil, call: nil, method: nil, metadata: nil) rc = Gruf::Outbound::RequestContext.new(type: :client_streamer, requests: requests, call: call, method: method, metadata: ) call(request_context: rc) do yield end end |
#request_response(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the request_response call
44 45 46 47 48 49 |
# File 'lib/gruf/interceptors/client_interceptor.rb', line 44 def request_response(request: nil, call: nil, method: nil, metadata: nil) rc = Gruf::Outbound::RequestContext.new(type: :request_response, requests: [request], call: call, method: method, metadata: ) call(request_context: rc) do yield end end |
#server_streamer(request: nil, call: nil, method: nil, metadata: nil) ⇒ Object
Call the interceptor from the server_streamer call
76 77 78 79 80 81 |
# File 'lib/gruf/interceptors/client_interceptor.rb', line 76 def server_streamer(request: nil, call: nil, method: nil, metadata: nil) rc = Gruf::Outbound::RequestContext.new(type: :server_streamer, requests: [request], call: call, method: method, metadata: ) call(request_context: rc) do yield end end |