Sha256: 9a52b9ff09ff682ccf75b6ca10290390b8004cbab45cba0cb2725ff32ae84541
Contents?: true
Size: 651 Bytes
Versions: 5
Compression:
Stored size: 651 Bytes
Contents
# Author:: Nicolas Despres <nicolas.despres@gmail.com>. # Copyright:: Copyright (c) 2004, 2005 TTK team. All rights reserved. # License:: LGPL # $Id: MonitorClient.rb 567 2005-04-13 08:00:06Z polrop $ module TTK module Services class MonitorClient < DRbService def initialize(config={}) @client = nil super(config) end attr_reader :client def start_service(uri, monitor_uri) super(uri) monitor = DRbObject.new_with_uri(monitor_uri.to_s) @client = Monitors::Client.new(self, monitor) end end # class MonitorClient end # module Services end # module TTK
Version data entries
5 entries across 5 versions & 1 rubygems