123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_coordination.proto
- namespace Ydb\Coordination\SessionRequest;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- **
- * Used to create a new semaphore
- *
- * Generated from protobuf message <code>Ydb.Coordination.SessionRequest.CreateSemaphore</code>
- */
- class CreateSemaphore extends \Google\Protobuf\Internal\Message
- {
- /**
- * Client-defined request id, echoed in the response
- *
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- */
- protected $req_id = 0;
- /**
- * Name of the semaphore to create
- *
- * Generated from protobuf field <code>string name = 2;</code>
- */
- protected $name = '';
- /**
- * Number of tokens that may be acquired by sessions
- *
- * Generated from protobuf field <code>uint64 limit = 3;</code>
- */
- protected $limit = 0;
- /**
- * User-defined data that is attached to the semaphore
- *
- * Generated from protobuf field <code>bytes data = 4;</code>
- */
- protected $data = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $req_id
- * Client-defined request id, echoed in the response
- * @type string $name
- * Name of the semaphore to create
- * @type int|string $limit
- * Number of tokens that may be acquired by sessions
- * @type string $data
- * User-defined data that is attached to the semaphore
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbCoordination::initOnce();
- parent::__construct($data);
- }
- /**
- * Client-defined request id, echoed in the response
- *
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- * @return int|string
- */
- public function getReqId()
- {
- return $this->req_id;
- }
- /**
- * Client-defined request id, echoed in the response
- *
- * 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;
- }
- /**
- * Name of the semaphore to create
- *
- * Generated from protobuf field <code>string name = 2;</code>
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Name of the semaphore to create
- *
- * Generated from protobuf field <code>string name = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setName($var)
- {
- GPBUtil::checkString($var, True);
- $this->name = $var;
- return $this;
- }
- /**
- * Number of tokens that may be acquired by sessions
- *
- * Generated from protobuf field <code>uint64 limit = 3;</code>
- * @return int|string
- */
- public function getLimit()
- {
- return $this->limit;
- }
- /**
- * Number of tokens that may be acquired by sessions
- *
- * Generated from protobuf field <code>uint64 limit = 3;</code>
- * @param int|string $var
- * @return $this
- */
- public function setLimit($var)
- {
- GPBUtil::checkUint64($var);
- $this->limit = $var;
- return $this;
- }
- /**
- * User-defined data that is attached to the semaphore
- *
- * Generated from protobuf field <code>bytes data = 4;</code>
- * @return string
- */
- public function getData()
- {
- return $this->data;
- }
- /**
- * User-defined data that is attached to the semaphore
- *
- * Generated from protobuf field <code>bytes data = 4;</code>
- * @param string $var
- * @return $this
- */
- public function setData($var)
- {
- GPBUtil::checkString($var, False);
- $this->data = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(CreateSemaphore::class, \Ydb\Coordination\SessionRequest_CreateSemaphore::class);
|