コード例 #1
0
ファイル: xmppdaemon.php プロジェクト: microcosmx/experiments
 function __construct($id = null, $daemonize = true, $threads = 1, $allsites = false)
 {
     if ($threads != 1) {
         // This should never happen. :)
         throw new Exception("XMPPDaemon can must run single-threaded");
     }
     parent::__construct($id, $daemonize, $threads);
     $this->allsites = $allsites;
 }
コード例 #2
0
 function __construct($id = null, $daemonize = true, $threads = 1, $allsites = false)
 {
     parent::__construct($id, $daemonize, $threads);
     $this->allsites = $allsites;
 }