mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			528 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			528 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
 | 
						|
 |