home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / cslockserv.tcl < prev    next >
Text File  |  1996-10-18  |  2KB  |  71 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)cslockserv.tcl    /main/hindenburg/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cslockserv.tcl    /main/hindenburg/7   18 Oct 1996 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "csserverno.tcl"
  15.  
  16. Class CSLockServerNode : {CSServerNode} {
  17.     constructor
  18.     method destructor
  19.     method childObjects
  20.     method createChild
  21.     method shutdown
  22.     method doUpdate
  23. }
  24.  
  25. constructor CSLockServerNode {class this name i_server} {
  26.     set this [CSServerNode::constructor $class $this $name $i_server]
  27.     # Start constructor user section
  28.  
  29.         $this label [$i_server name]
  30.         $this icon rep_locksrv_16
  31.  
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method CSLockServerNode::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this CSServerNode::destructor
  40. }
  41.  
  42. method CSLockServerNode::childObjects {this} {
  43.     set server [$this server]
  44.     return [osort pid -integer [$server clients]]
  45. }
  46.  
  47. method CSLockServerNode::createChild {this object} {
  48.     return [CSClientNode new $this.[$this childName $object] $object]
  49. }
  50.  
  51. method CSLockServerNode::shutdown {this {confirm 1}} {
  52.     if $confirm {
  53.         $this confirmShutdown "Shutdown Lockserver" \
  54.             "Are you sure you want to shutdown the lockserver?" \
  55.             shutdownLockServer2
  56.         return
  57.     }
  58.  
  59.     $this CSServerNode::shutdown $confirm
  60. }
  61.  
  62. method CSLockServerNode::doUpdate {this {rebuild 1}} {
  63.     $this CSServerNode::doUpdate $rebuild
  64.  
  65.     set lockServer [$this server]
  66.     $lockServer disconnect
  67. }
  68.  
  69. # Do not delete this line -- regeneration end marker
  70.  
  71.