mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 6064132c42
			
		
	
	
		6064132c42
		
	
	
	
	
		
			
			git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'drb/drb'
 | |
| require 'drb/eq'
 | |
| require 'rinda/ring'
 | |
| 
 | |
| 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
 | |
| 
 |