123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_topic.proto
- namespace Ydb\Topic\StreamReadMessage\CommitOffsetResponse;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Per-partition commit representation.
- *
- * Generated from protobuf message <code>Ydb.Topic.StreamReadMessage.CommitOffsetResponse.PartitionCommittedOffset</code>
- */
- class PartitionCommittedOffset extends \Google\Protobuf\Internal\Message
- {
- /**
- * Partition session identifier.
- *
- * Generated from protobuf field <code>int64 partition_session_id = 1;</code>
- */
- protected $partition_session_id = 0;
- /**
- * Upper bound for committed offsets.
- *
- * Generated from protobuf field <code>int64 committed_offset = 2;</code>
- */
- protected $committed_offset = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $partition_session_id
- * Partition session identifier.
- * @type int|string $committed_offset
- * Upper bound for committed offsets.
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbTopic::initOnce();
- parent::__construct($data);
- }
- /**
- * Partition session identifier.
- *
- * Generated from protobuf field <code>int64 partition_session_id = 1;</code>
- * @return int|string
- */
- public function getPartitionSessionId()
- {
- return $this->partition_session_id;
- }
- /**
- * Partition session identifier.
- *
- * Generated from protobuf field <code>int64 partition_session_id = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setPartitionSessionId($var)
- {
- GPBUtil::checkInt64($var);
- $this->partition_session_id = $var;
- return $this;
- }
- /**
- * Upper bound for committed offsets.
- *
- * Generated from protobuf field <code>int64 committed_offset = 2;</code>
- * @return int|string
- */
- public function getCommittedOffset()
- {
- return $this->committed_offset;
- }
- /**
- * Upper bound for committed offsets.
- *
- * Generated from protobuf field <code>int64 committed_offset = 2;</code>
- * @param int|string $var
- * @return $this
- */
- public function setCommittedOffset($var)
- {
- GPBUtil::checkInt64($var);
- $this->committed_offset = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(PartitionCommittedOffset::class, \Ydb\Topic\StreamReadMessage_CommitOffsetResponse_PartitionCommittedOffset::class);
|