mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
a1162d2bf8
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
30 lines
530 B
Ruby
30 lines
530 B
Ruby
require 'drb/drb'
|
|
require 'drb/eq'
|
|
require 'rinda/ring'
|
|
require 'thread'
|
|
|
|
class RingEcho
|
|
include DRbUndumped
|
|
def initialize(name)
|
|
@name = name
|
|
end
|
|
|
|
def echo(str)
|
|
"#{@name}: #{str}"
|
|
end
|
|
end
|
|
|
|
DRb.start_service
|
|
|
|
renewer = Rinda::SimpleRenewer.new
|
|
|
|
finder = Rinda::RingFinger.new
|
|
ts = finder.lookup_ring_any
|
|
ts.read_all([:name, :RingEcho, nil, nil]).each do |tuple|
|
|
p tuple[2]
|
|
puts tuple[2].echo('Hello, World') rescue nil
|
|
end
|
|
ts.write([:name, :RingEcho, RingEcho.new(DRb.uri), ''], renewer)
|
|
|
|
DRb.thread.join
|
|
|