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