123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_query_stats.proto
- namespace Ydb\TableStats;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>Ydb.TableStats.CompilationStats</code>
- */
- class CompilationStats extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>bool from_cache = 1;</code>
- */
- protected $from_cache = false;
- /**
- * Generated from protobuf field <code>uint64 duration_us = 2;</code>
- */
- protected $duration_us = 0;
- /**
- * Generated from protobuf field <code>uint64 cpu_time_us = 3;</code>
- */
- protected $cpu_time_us = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type bool $from_cache
- * @type int|string $duration_us
- * @type int|string $cpu_time_us
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbQueryStats::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>bool from_cache = 1;</code>
- * @return bool
- */
- public function getFromCache()
- {
- return $this->from_cache;
- }
- /**
- * Generated from protobuf field <code>bool from_cache = 1;</code>
- * @param bool $var
- * @return $this
- */
- public function setFromCache($var)
- {
- GPBUtil::checkBool($var);
- $this->from_cache = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>uint64 duration_us = 2;</code>
- * @return int|string
- */
- public function getDurationUs()
- {
- return $this->duration_us;
- }
- /**
- * Generated from protobuf field <code>uint64 duration_us = 2;</code>
- * @param int|string $var
- * @return $this
- */
- public function setDurationUs($var)
- {
- GPBUtil::checkUint64($var);
- $this->duration_us = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>uint64 cpu_time_us = 3;</code>
- * @return int|string
- */
- public function getCpuTimeUs()
- {
- return $this->cpu_time_us;
- }
- /**
- * Generated from protobuf field <code>uint64 cpu_time_us = 3;</code>
- * @param int|string $var
- * @return $this
- */
- public function setCpuTimeUs($var)
- {
- GPBUtil::checkUint64($var);
- $this->cpu_time_us = $var;
- return $this;
- }
- }
|