Package com.nhn.gameanvil.protocol
Interface Base.PayloadOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Base.Payload
,Base.Payload.Builder
- Enclosing class:
- Base
public static interface Base.PayloadOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getData()
bytes data = 2;
int
getDecompressSize()
int32 decompress_size = 4;
int
getMsgId()
int32 msg_id = 1;
java.lang.String
getMsgName()
string msg_name = 3;
com.google.protobuf.ByteString
getMsgNameBytes()
string msg_name = 3;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMsgId
int getMsgId()
int32 msg_id = 1;
- Returns:
- The msgId.
-
getData
com.google.protobuf.ByteString getData()
bytes data = 2;
- Returns:
- The data.
-
getMsgName
java.lang.String getMsgName()
string msg_name = 3;
- Returns:
- The msgName.
-
getMsgNameBytes
com.google.protobuf.ByteString getMsgNameBytes()
string msg_name = 3;
- Returns:
- The bytes for msgName.
-
getDecompressSize
int getDecompressSize()
int32 decompress_size = 4;
- Returns:
- The decompressSize.
-
-