コード例 #1
0
ファイル: Metrics.php プロジェクト: QiStang/Mycat-openEP
 public function __construct($id = '', $total = 0, $current = 0, $totalLifetime = 0, $failures = 0, $queued = 0, $outstanding = 0, $delivered = 0)
 {
     parent::__construct($id, $total, $current, $totalLifetime, $failures);
     $this->queued = $queued;
     $this->outstanding = $outstanding;
     $this->delivered = $delivered;
 }
コード例 #2
0
ファイル: Metrics.php プロジェクト: QiStang/Mycat-openEP
 public function __construct($id = '', $total = 0, $current = 0, $totalLifetime = 0, $failures = 0, $forwardedClient = 0, $forwardedServer = 0, $routingTableSize = 0, $queuedClient = 0, $queuedServer = 0, $overriddenClient = 0, $overriddenServer = 0)
 {
     parent::__construct($id, $total, $current, $totalLifetime, $failures);
     $this->forwardedClient = $forwardedClient;
     $this->forwardedServer = $forwardedServer;
     $this->routingTableSize = $routingTableSize;
     $this->queuedClient = $queuedClient;
     $this->queuedServer = $queuedServer;
     $this->overriddenClient = $overriddenClient;
     $this->overriddenServer = $overriddenServer;
 }
コード例 #3
0
ファイル: Metrics.php プロジェクト: QiStang/Mycat-openEP
 public function __construct($id = '', $total = 0, $current = 0, $totalLifetime = 0, $failures = 0, $receivedBytes = 0, $sentBytes = 0)
 {
     parent::__construct($id, $total, $current, $totalLifetime, $failures);
     $this->receivedBytes = $receivedBytes;
     $this->sentBytes = $sentBytes;
 }