Package s2.v1alpha
Interface CheckTailResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CheckTailResponse
,CheckTailResponse.Builder
public interface CheckTailResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getLastTimestamp()
Timestamp of the last durable record on the stream.long
getNextSeqNum()
Sequence number that will be assigned to the next record on the stream.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNextSeqNum
long getNextSeqNum()
Sequence number that will be assigned to the next record on the stream. It will be 0 for a stream that has not been written to.
uint64 next_seq_num = 1;
- Returns:
- The nextSeqNum.
-
getLastTimestamp
long getLastTimestamp()
Timestamp of the last durable record on the stream. It starts out as 0 for a new stream.
uint64 last_timestamp = 2;
- Returns:
- The lastTimestamp.
-
-