Module: Cheri::JRuby::Explorer::DRbHelper
- Defined in:
- lib/cheri/jruby/explorer/viewer.rb
Instance Method Summary collapse
-
#drb_to_array(maybe_array) ⇒ Object
work around DRb (or possibly JRuby) issue iterating pseudo-array.
Instance Method Details
#drb_to_array(maybe_array) ⇒ Object
work around DRb (or possibly JRuby) issue iterating pseudo-array. TODO: need a client-side proxy for error handling and issues like this.
618 619 620 621 |
# File 'lib/cheri/jruby/explorer/viewer.rb', line 618 def drb_to_array(maybe_array) return maybe_array if Array === maybe_array Array.new(maybe_array.length) {|i| maybe_array[i]} end |