summaryrefslogtreecommitdiff
path: root/sample/drb/dlogc.rb
blob: c75bc7b520ca59728dc7ddb5bd5003332e3702bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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")