Interface Protocol.SubscribeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Protocol.Subscribe
,Protocol.Subscribe.Builder
- Enclosing class:
- Protocol
public static interface Protocol.SubscribeOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getData()
bytes data = 7;
java.lang.String
getEpoch()
string epoch = 4;
com.google.protobuf.ByteString
getEpochBytes()
string epoch = 4;
int
getGen()
uint32 gen = 3;
long
getOffset()
uint64 offset = 5;
boolean
getPositioned()
bool positioned = 6;
boolean
getRecoverable()
bool recoverable = 1;
int
getSeq()
uint32 seq = 2;
-
-
-
Method Detail
-
getRecoverable
boolean getRecoverable()
bool recoverable = 1;
- Returns:
- The recoverable.
-
getSeq
int getSeq()
uint32 seq = 2;
- Returns:
- The seq.
-
getGen
int getGen()
uint32 gen = 3;
- Returns:
- The gen.
-
getEpoch
java.lang.String getEpoch()
string epoch = 4;
- Returns:
- The epoch.
-
getEpochBytes
com.google.protobuf.ByteString getEpochBytes()
string epoch = 4;
- Returns:
- The bytes for epoch.
-
getOffset
long getOffset()
uint64 offset = 5;
- Returns:
- The offset.
-
getPositioned
boolean getPositioned()
bool positioned = 6;
- Returns:
- The positioned.
-
getData
com.google.protobuf.ByteString getData()
bytes data = 7;
- Returns:
- The data.
-
-