Class: Aws::RpcV2::Handler
- Inherits:
-
Seahorse::Client::Handler
- Object
- Seahorse::Client::Handler
- Aws::RpcV2::Handler
- Defined in:
- gems/aws-sdk-core/lib/aws-sdk-core/rpc_v2/handler.rb
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Handler
Instance Method Summary collapse
Methods inherited from Seahorse::Client::Handler
Constructor Details
This class inherits a constructor from Seahorse::Client::Handler
Instance Method Details
#call(context) ⇒ Seahorse::Client::Response
8 9 10 11 12 13 14 |
# File 'gems/aws-sdk-core/lib/aws-sdk-core/rpc_v2/handler.rb', line 8 def call(context) build_request(context) response = with_metric { @handler.call(context) } response.on(200..299) { |resp| resp.data = parse_body(context) } response.on(200..599) { |_resp| apply_request_id(context) } response end |