initProperty( 'throttling_rate', DlRate::class); $this->initProperty( 'nzb_config_status', NzbConfigStatus::class); $this->initProperty( 'dht_stats', DhtStats::class); } /** * @return int */ public function getNbTasks() { return $this->nb_tasks; } /** * @return int */ public function getNbTasksStopped() { return $this->nb_tasks_stopped; } /** * @return int */ public function getNbTasksChecking() { return $this->nb_tasks_checking; } /** * @return int */ public function getNbTasksQueued() { return $this->nb_tasks_queued; } /** * @return int */ public function getNbTasksExtracting() { return $this->nb_tasks_extracting; } /** * @return int */ public function getNbTasksDone() { return $this->nb_tasks_done; } /** * @return int */ public function getNbTasksRepairing() { return $this->nb_tasks_repairing; } /** * @return int */ public function getNbTasksSeeding() { return $this->nb_tasks_seeding; } /** * @return int */ public function getNbTasksDownloading() { return $this->nb_tasks_downloading; } /** * @return int */ public function getNbTasksError() { return $this->nb_tasks_error; } /** * @return int */ public function getNbTasksStopping() { return $this->nb_tasks_stopping; } /** * @return int */ public function getNbTasksActive() { return $this->nb_tasks_active; } /** * @return int */ public function getNbRss() { return $this->nb_rss; } /** * @return int */ public function getNbRssItemsUnread() { return $this->nb_rss_items_unread; } /** * @return int */ public function getRxRate() { return $this->rx_rate; } /** * @return int */ public function getTxRate() { return $this->tx_rate; } /** * @return string */ public function getThrottlingMode() { return $this->throttling_mode; } /** * @return boolean */ public function isThrottlingIsScheduled() { return $this->throttling_is_scheduled; } /** * @return DlRate */ public function getThrottlingRate() { return $this->throttling_rate; } /** * @return NzbConfigStatus */ public function getNzbConfigStatus() { return $this->nzb_config_status; } /** * @return boolean */ public function isConnReady() { return $this->conn_ready; } /** * @return int */ public function getNbPeer() { return $this->nb_peer; } /** * @return int */ public function getBlocklistEntries() { return $this->blocklist_entries; } /** * @return int */ public function getBlocklistHits() { return $this->blocklist_hits; } /** * @return DhtStats */ public function getDhtStats() { return $this->dht_stats; } }