Ydb.Coordination.SessionResponse.DescribeSemaphoreResult
*/
class DescribeSemaphoreResult extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field uint64 req_id = 1;
*/
protected $req_id = 0;
/**
* Generated from protobuf field .Ydb.StatusIds.StatusCode status = 2;
*/
protected $status = 0;
/**
* Generated from protobuf field repeated .Ydb.Issue.IssueMessage issues = 3;
*/
private $issues;
/**
* Generated from protobuf field .Ydb.Coordination.SemaphoreDescription semaphore_description = 4;
*/
protected $semaphore_description = null;
/**
* True if a watch has been added for the semaphore
*
* Generated from protobuf field bool watch_added = 5;
*/
protected $watch_added = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $req_id
* @type int $status
* @type array<\Ydb\Issue\IssueMessage>|\Google\Protobuf\Internal\RepeatedField $issues
* @type \Ydb\Coordination\SemaphoreDescription $semaphore_description
* @type bool $watch_added
* True if a watch has been added for the semaphore
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbCoordination::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field uint64 req_id = 1;
* @return int|string
*/
public function getReqId()
{
return $this->req_id;
}
/**
* Generated from protobuf field uint64 req_id = 1;
* @param int|string $var
* @return $this
*/
public function setReqId($var)
{
GPBUtil::checkUint64($var);
$this->req_id = $var;
return $this;
}
/**
* Generated from protobuf field .Ydb.StatusIds.StatusCode status = 2;
* @return int
*/
public function getStatus()
{
return $this->status;
}
/**
* Generated from protobuf field .Ydb.StatusIds.StatusCode status = 2;
* @param int $var
* @return $this
*/
public function setStatus($var)
{
GPBUtil::checkEnum($var, \Ydb\StatusIds\StatusCode::class);
$this->status = $var;
return $this;
}
/**
* Generated from protobuf field repeated .Ydb.Issue.IssueMessage issues = 3;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getIssues()
{
return $this->issues;
}
/**
* Generated from protobuf field repeated .Ydb.Issue.IssueMessage issues = 3;
* @param array<\Ydb\Issue\IssueMessage>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setIssues($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Issue\IssueMessage::class);
$this->issues = $arr;
return $this;
}
/**
* Generated from protobuf field .Ydb.Coordination.SemaphoreDescription semaphore_description = 4;
* @return \Ydb\Coordination\SemaphoreDescription|null
*/
public function getSemaphoreDescription()
{
return $this->semaphore_description;
}
public function hasSemaphoreDescription()
{
return isset($this->semaphore_description);
}
public function clearSemaphoreDescription()
{
unset($this->semaphore_description);
}
/**
* Generated from protobuf field .Ydb.Coordination.SemaphoreDescription semaphore_description = 4;
* @param \Ydb\Coordination\SemaphoreDescription $var
* @return $this
*/
public function setSemaphoreDescription($var)
{
GPBUtil::checkMessage($var, \Ydb\Coordination\SemaphoreDescription::class);
$this->semaphore_description = $var;
return $this;
}
/**
* True if a watch has been added for the semaphore
*
* Generated from protobuf field bool watch_added = 5;
* @return bool
*/
public function getWatchAdded()
{
return $this->watch_added;
}
/**
* True if a watch has been added for the semaphore
*
* Generated from protobuf field bool watch_added = 5;
* @param bool $var
* @return $this
*/
public function setWatchAdded($var)
{
GPBUtil::checkBool($var);
$this->watch_added = $var;
return $this;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DescribeSemaphoreResult::class, \Ydb\Coordination\SessionResponse_DescribeSemaphoreResult::class);