From: Yohanes Santoso Date: 2005-10-21T04:58:00+09:00 Subject: Re: DRb Basics James Edward Gray II writes: > On Oct 19, 2005, at 6:32 PM, Jeff Wood wrote: > >> I know your question is/was about DRb but Roxy will do the block. > > Just to be clear, DRb *does* do the block. I'm just trying to figure > out how... ;) > > James Edward Gray II The block stays with the the caller and the method on the remote object does a RPC call for each block invocation. remote_array.sort{|x| x} would cause at least #{remote_array.size} RPC calls from the remote process to the process where the block is declared. YS.