Class: Rack::Idempotent
- Inherits:
-
Object
- Object
- Rack::Idempotent
- Defined in:
- lib/rack-idempotent/version.rb,
lib/rack-idempotent.rb
Defined Under Namespace
Classes: DefaultRescue, ExponentialBackoff, ImmediateRetry, RetryLimitExceeded, Retryable
Constant Summary collapse
- VERSION =
"0.2.0"
- DEFAULT_RETRY_LIMIT =
5
Instance Attribute Summary collapse
-
#rescue_policy ⇒ Object
readonly
Returns the value of attribute rescue_policy.
-
#retry_policy ⇒ Object
readonly
Returns the value of attribute retry_policy.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, options = {}) ⇒ Idempotent
constructor
A new instance of Idempotent.
Constructor Details
#initialize(app, options = {}) ⇒ Idempotent
Returns a new instance of Idempotent.
19 20 21 22 23 |
# File 'lib/rack-idempotent.rb', line 19 def initialize(app, ={}) @app = app @retry_policy = [:retry] || Rack::Idempotent::ImmediateRetry.new @rescue_policy = [:rescue] || Rack::Idempotent::DefaultRescue.new end |
Instance Attribute Details
#rescue_policy ⇒ Object (readonly)
Returns the value of attribute rescue_policy.
17 18 19 |
# File 'lib/rack-idempotent.rb', line 17 def rescue_policy @rescue_policy end |
#retry_policy ⇒ Object (readonly)
Returns the value of attribute retry_policy.
17 18 19 |
# File 'lib/rack-idempotent.rb', line 17 def retry_policy @retry_policy end |
Instance Method Details
#call(env) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/rack-idempotent.rb', line 25 def call(env) request = Rack::Request.new(env) response = nil exception = nil while true retry_policy.call(request, response, exception) if response || exception response, exception = nil begin status, headers, body = @app.call(env.dup) response = Rack::Response.new(body, status, headers) next if rescue_policy.call({:response => response, :request => request}) return [status, headers, body] rescue Rack::Idempotent::Retryable => exception request.env["idempotent.requests.exceptions"] ||= [] request.env["idempotent.requests.exceptions"] << exception next rescue => exception if rescue_policy.call({:exception => exception, :request => request}) request.env["idempotent.requests.exceptions"] ||= [] request.env["idempotent.requests.exceptions"] << exception next end raise end end end |