summaryrefslogtreecommitdiff
path: root/jni/ruby/sample/drb/ring_echo.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/sample/drb/ring_echo.rb
Fresh start
Diffstat (limited to 'jni/ruby/sample/drb/ring_echo.rb')
-rw-r--r--jni/ruby/sample/drb/ring_echo.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/jni/ruby/sample/drb/ring_echo.rb b/jni/ruby/sample/drb/ring_echo.rb
new file mode 100644
index 0000000..3b743ca
--- /dev/null
+++ b/jni/ruby/sample/drb/ring_echo.rb
@@ -0,0 +1,30 @@
+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
+