Package com.nhn.gameanvil.protocol
Interface Log.PacketLogOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Log.PacketLog
,Log.PacketLog.Builder
- Enclosing class:
- Log
public static interface Log.PacketLogOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getElapsed()
int64 elapsed = 7;
int
getErrorCode()
int32 errorCode = 2;
int
getMsgId()
int32 msgId = 5;
int
getSeq()
int32 seq = 6;
int
getServiceId()
int32 serviceId = 3;
int
getSize()
int32 size = 8;
int
getSubId()
int32 subId = 4;
Log.PacketLogType
getType()
.com.nhn.gameanvil.protocol.PacketLogType type = 1;
int
getTypeValue()
.com.nhn.gameanvil.protocol.PacketLogType type = 1;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
.com.nhn.gameanvil.protocol.PacketLogType type = 1;
- Returns:
- The enum numeric value on the wire for type.
-
getType
Log.PacketLogType getType()
.com.nhn.gameanvil.protocol.PacketLogType type = 1;
- Returns:
- The type.
-
getErrorCode
int getErrorCode()
int32 errorCode = 2;
- Returns:
- The errorCode.
-
getServiceId
int getServiceId()
int32 serviceId = 3;
- Returns:
- The serviceId.
-
getSubId
int getSubId()
int32 subId = 4;
- Returns:
- The subId.
-
getMsgId
int getMsgId()
int32 msgId = 5;
- Returns:
- The msgId.
-
getSeq
int getSeq()
int32 seq = 6;
- Returns:
- The seq.
-
getElapsed
long getElapsed()
int64 elapsed = 7;
- Returns:
- The elapsed.
-
getSize
int getSize()
int32 size = 8;
- Returns:
- The size.
-
-