Ydb.Topic.StreamReadMessage.StartPartitionSessionRequest
*/
class StartPartitionSessionRequest extends \Google\Protobuf\Internal\Message
{
/**
* Partition session description.
*
* Generated from protobuf field .Ydb.Topic.StreamReadMessage.PartitionSession partition_session = 1;
*/
protected $partition_session = null;
/**
* Each offset up to and including (committed_offset - 1) was fully processed.
*
* Generated from protobuf field int64 committed_offset = 2;
*/
protected $committed_offset = 0;
/**
* Partition contains messages with offsets in range [start, end).
*
* Generated from protobuf field .Ydb.Topic.OffsetsRange partition_offsets = 3;
*/
protected $partition_offsets = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Ydb\Topic\StreamReadMessage\PartitionSession $partition_session
* Partition session description.
* @type int|string $committed_offset
* Each offset up to and including (committed_offset - 1) was fully processed.
* @type \Ydb\Topic\OffsetsRange $partition_offsets
* Partition contains messages with offsets in range [start, end).
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbTopic::initOnce();
parent::__construct($data);
}
/**
* Partition session description.
*
* Generated from protobuf field .Ydb.Topic.StreamReadMessage.PartitionSession partition_session = 1;
* @return \Ydb\Topic\StreamReadMessage\PartitionSession|null
*/
public function getPartitionSession()
{
return $this->partition_session;
}
public function hasPartitionSession()
{
return isset($this->partition_session);
}
public function clearPartitionSession()
{
unset($this->partition_session);
}
/**
* Partition session description.
*
* Generated from protobuf field .Ydb.Topic.StreamReadMessage.PartitionSession partition_session = 1;
* @param \Ydb\Topic\StreamReadMessage\PartitionSession $var
* @return $this
*/
public function setPartitionSession($var)
{
GPBUtil::checkMessage($var, \Ydb\Topic\StreamReadMessage\PartitionSession::class);
$this->partition_session = $var;
return $this;
}
/**
* Each offset up to and including (committed_offset - 1) was fully processed.
*
* Generated from protobuf field int64 committed_offset = 2;
* @return int|string
*/
public function getCommittedOffset()
{
return $this->committed_offset;
}
/**
* Each offset up to and including (committed_offset - 1) was fully processed.
*
* Generated from protobuf field int64 committed_offset = 2;
* @param int|string $var
* @return $this
*/
public function setCommittedOffset($var)
{
GPBUtil::checkInt64($var);
$this->committed_offset = $var;
return $this;
}
/**
* Partition contains messages with offsets in range [start, end).
*
* Generated from protobuf field .Ydb.Topic.OffsetsRange partition_offsets = 3;
* @return \Ydb\Topic\OffsetsRange|null
*/
public function getPartitionOffsets()
{
return $this->partition_offsets;
}
public function hasPartitionOffsets()
{
return isset($this->partition_offsets);
}
public function clearPartitionOffsets()
{
unset($this->partition_offsets);
}
/**
* Partition contains messages with offsets in range [start, end).
*
* Generated from protobuf field .Ydb.Topic.OffsetsRange partition_offsets = 3;
* @param \Ydb\Topic\OffsetsRange $var
* @return $this
*/
public function setPartitionOffsets($var)
{
GPBUtil::checkMessage($var, \Ydb\Topic\OffsetsRange::class);
$this->partition_offsets = $var;
return $this;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(StartPartitionSessionRequest::class, \Ydb\Topic\StreamReadMessage_StartPartitionSessionRequest::class);