You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Plugins::RetryErrors::Handler

Inherits:
Seahorse::Client::Handler show all
Defined in:
aws-sdk-core/lib/aws-sdk-core/plugins/retry_errors.rb

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Handler

#handler

Instance Method Summary collapse

Methods inherited from Seahorse::Client::Handler

#initialize, #inspect

Constructor Details

This class inherits a constructor from Seahorse::Client::Handler

Instance Method Details

#call(context) ⇒ Object



107
108
109
110
111
112
113
114
# File 'aws-sdk-core/lib/aws-sdk-core/plugins/retry_errors.rb', line 107

def call(context)
  response = @handler.call(context)
  if response.error
    retry_if_possible(response)
  else
    response
  end
end