123456789_123456789_123456789_123456789_123456789_

Class: DRb::DRbArray

Relationships & Source Files
Inherits: Object
Defined in: lib/drb/drb.rb

Overview

An Array wrapper that can be sent to another server via ::DRb.

All entries in the array will be dumped or be references that point to the local server.

Class Method Summary

  • .new(ary) ⇒ DRbArray constructor

    Creates a new DRbArray that either dumps or wraps all the items in the Array ary so they can be loaded by a remote ::DRb server.

Constructor Details

.new(ary) ⇒ DRbArray

Creates a new DRbArray that either dumps or wraps all the items in the Array ary so they can be loaded by a remote ::DRb server.

[ GitHub ]

  
# File 'lib/drb/drb.rb', line 524

def initialize(ary)
  @ary = ary.collect { |obj|
    if obj.kind_of? DRbUndumped
      DRbObject.new(obj)
    else
      begin
        Marshal.dump(obj)
        obj
      rescue
        DRbObject.new(obj)
      end
    end
  }
end