Module: Kernel
- Defined in:
- lib/retriable/core_ext/kernel.rb
Instance Method Summary collapse
Instance Method Details
#retriable(opts = {}) ⇒ Object
6 7 8 |
# File 'lib/retriable/core_ext/kernel.rb', line 6 def retriable(opts = {}, &) Retriable.retriable(opts, &) end |
#retriable_with_context(context_key, opts = {}) ⇒ Object
10 11 12 |
# File 'lib/retriable/core_ext/kernel.rb', line 10 def retriable_with_context(context_key, opts = {}, &) Retriable.with_context(context_key, opts, &) end |