module Kernel

Public Instance Methods

retriable(opts = {}, &block) click to toggle source
# File lib/retriable/core_ext/kernel.rb, line 4
def retriable(opts = {}, &block)
  Retriable.retriable(opts, &block)
end
retriable_with_context(context_key, opts = {}, &block) click to toggle source
# File lib/retriable/core_ext/kernel.rb, line 8
def retriable_with_context(context_key, opts = {}, &block)
  Retriable.with_context(context_key, opts, &block)
end