Flowdock
perform_with_block() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/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
Register or log in to add new notes.