123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_coordination.proto
- namespace Ydb\Coordination\SessionResponse;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- **
- * Used to report a change in the watched semaphore
- *
- * Generated from protobuf message <code>Ydb.Coordination.SessionResponse.DescribeSemaphoreChanged</code>
- */
- class DescribeSemaphoreChanged extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- */
- protected $req_id = 0;
- /**
- * Generated from protobuf field <code>bool data_changed = 2;</code>
- */
- protected $data_changed = false;
- /**
- * Generated from protobuf field <code>bool owners_changed = 3;</code>
- */
- protected $owners_changed = false;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $req_id
- * @type bool $data_changed
- * @type bool $owners_changed
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbCoordination::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- * @return int|string
- */
- public function getReqId()
- {
- return $this->req_id;
- }
- /**
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setReqId($var)
- {
- GPBUtil::checkUint64($var);
- $this->req_id = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>bool data_changed = 2;</code>
- * @return bool
- */
- public function getDataChanged()
- {
- return $this->data_changed;
- }
- /**
- * Generated from protobuf field <code>bool data_changed = 2;</code>
- * @param bool $var
- * @return $this
- */
- public function setDataChanged($var)
- {
- GPBUtil::checkBool($var);
- $this->data_changed = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>bool owners_changed = 3;</code>
- * @return bool
- */
- public function getOwnersChanged()
- {
- return $this->owners_changed;
- }
- /**
- * Generated from protobuf field <code>bool owners_changed = 3;</code>
- * @param bool $var
- * @return $this
- */
- public function setOwnersChanged($var)
- {
- GPBUtil::checkBool($var);
- $this->owners_changed = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(DescribeSemaphoreChanged::class, \Ydb\Coordination\SessionResponse_DescribeSemaphoreChanged::class);
|