Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • drb/invokemethod.rb

DRb::DRbServer::InvokeMethod18Mixin

Public Instance Methods

block_yield(x) click to toggle source
 
               # File drb/invokemethod.rb, line 6
def block_yield(x)
  if x.size == 1 && x[0].class == Array
    x[0] = DRbArray.new(x[0])
  end
  @block.call(*x)
end
            
perform_with_block() click to toggle source
 
               # File drb/invokemethod.rb, line 13
def perform_with_block
  @obj.__send__(@msg_id, *@argv) do |*x|
    jump_error = nil
    begin
      block_value = block_yield(x)
    rescue LocalJumpError
      jump_error = $!
    end
    if jump_error
      case jump_error.reason
      when :break
        break(jump_error.exit_value)
      else
        raise jump_error
      end
    end
    block_value
  end
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.