Interface Protocol.PublicationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Protocol.Publication
,Protocol.Publication.Builder
- Enclosing class:
- Protocol
public static interface Protocol.PublicationOrBuilder 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 = 4;
int
getGen()
uint32 gen = 2;
Protocol.ClientInfo
getInfo()
.protocol.ClientInfo info = 5;
long
getOffset()
uint64 offset = 6;
int
getSeq()
uint32 seq = 1;
java.lang.String
getUid()
string uid = 3;
com.google.protobuf.ByteString
getUidBytes()
string uid = 3;
boolean
hasInfo()
.protocol.ClientInfo info = 5;
-
-
-
Method Detail
-
getSeq
int getSeq()
uint32 seq = 1;
- Returns:
- The seq.
-
getGen
int getGen()
uint32 gen = 2;
- Returns:
- The gen.
-
getUid
java.lang.String getUid()
string uid = 3;
- Returns:
- The uid.
-
getUidBytes
com.google.protobuf.ByteString getUidBytes()
string uid = 3;
- Returns:
- The bytes for uid.
-
getData
com.google.protobuf.ByteString getData()
bytes data = 4;
- Returns:
- The data.
-
hasInfo
boolean hasInfo()
.protocol.ClientInfo info = 5;
- Returns:
- Whether the info field is set.
-
getInfo
Protocol.ClientInfo getInfo()
.protocol.ClientInfo info = 5;
- Returns:
- The info.
-
getOffset
long getOffset()
uint64 offset = 6;
- Returns:
- The offset.
-
-