Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RP_TransStat.class.php « packet « src « prods « irodsphp « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb591f01343a0eb2031ddf14a867c2dfa0f72b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

require_once(dirname(__FILE__) . "/../autoload.inc.php");

class RP_TransStat extends RODSPacket
{
    public function __construct($numThreads = 0, $bytesWritten = 0)
    {
        $packlets = array("numThreads" => $numThreads,
            'bytesWritten' => $bytesWritten);
        parent::__construct("TransStat_PI", $packlets);
    }

}

?>