summaryrefslogtreecommitdiffstats
path: root/sample/drb/dlogc.rb
diff options
context:
space:
mode:
authorseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-14 02:28:02 +0000
committerseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-14 02:28:02 +0000
commitc2b815331000ceae007f141c6d62b198503ccf30 (patch)
tree0406cb26ba7387c664ef8d180306804a9b27725d /sample/drb/dlogc.rb
parent05a4c6692210f6765edd2455f399187f58425e5a (diff)
downloadruby-c2b815331000ceae007f141c6d62b198503ccf30.tar.gz
ruby-c2b815331000ceae007f141c6d62b198503ccf30.tar.xz
ruby-c2b815331000ceae007f141c6d62b198503ccf30.zip
import drb/sample
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/drb/dlogc.rb')
-rw-r--r--sample/drb/dlogc.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/sample/drb/dlogc.rb b/sample/drb/dlogc.rb
new file mode 100644
index 000000000..c75bc7b52
--- /dev/null
+++ b/sample/drb/dlogc.rb
@@ -0,0 +1,16 @@
+=begin
+ distributed Ruby --- Log test
+ Copyright (c) 1999-2001 Masatoshi SEKI
+=end
+
+require 'drb/drb'
+
+there = ARGV.shift || raise("usage: #{$0} <server_uri>")
+
+DRb.start_service
+ro = DRbObject.new(nil, there)
+ro.log(123)
+ro.log("hello")
+sleep 2
+ro.log("wakeup")
+