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; }
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; }
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; }