class DRb::DRbObject

Public Instance Methods

__orig_method_missing(*args, &blk)
Alias for: method_missing
method_missing(*args, &blk) click to toggle source
# File lib/drb/http0helper.rb, line 10
def method_missing(*args, &blk) # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
  __orig_method_missing(*args, &blk)
rescue DRb::DRbConnError, Errno::ECONNREFUSED
  sleep 0.1
  retry
end
Also aliased as: __orig_method_missing