Exception: Amigo::Retry::OrDie
- Defined in:
- lib/amigo/retry.rb
Overview
Raise this class, or a subclass of it, to:
-
Use
Retryexception semantics while the current attempt is <=attempts, or -
Use
Dieexception semantics if the current attempt is >attempts.
Instance Attribute Summary collapse
-
#attempts ⇒ Object
readonly
Returns the value of attribute attempts.
-
#interval_or_timestamp ⇒ Object
readonly
Returns the value of attribute interval_or_timestamp.
-
#wrapped ⇒ Object
readonly
Returns the value of attribute wrapped.
Instance Method Summary collapse
-
#initialize(attempts, interval_or_timestamp, msg = nil) ⇒ OrDie
constructor
A new instance of OrDie.
Constructor Details
#initialize(attempts, interval_or_timestamp, msg = nil) ⇒ OrDie
Returns a new instance of OrDie.
65 66 67 68 69 70 |
# File 'lib/amigo/retry.rb', line 65 def initialize(attempts, , msg=nil) @wrapped = exc?(msg) @attempts = attempts = super(exc_or_msg("retry every #{interval_or_timestamp.to_i}s up to #{attempts} times", msg)) end |
Instance Attribute Details
#attempts ⇒ Object (readonly)
Returns the value of attribute attempts.
63 64 65 |
# File 'lib/amigo/retry.rb', line 63 def attempts @attempts end |
#interval_or_timestamp ⇒ Object (readonly)
Returns the value of attribute interval_or_timestamp.
63 64 65 |
# File 'lib/amigo/retry.rb', line 63 def end |
#wrapped ⇒ Object (readonly)
Returns the value of attribute wrapped.
63 64 65 |
# File 'lib/amigo/retry.rb', line 63 def wrapped @wrapped end |