Interface Protocol.CommandOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Protocol.Command
,Protocol.Command.Builder
- Enclosing class:
- Protocol
public static interface Protocol.CommandOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getId()
uint32 id = 1;
Protocol.Command.MethodType
getMethod()
.centrifugal.centrifuge.protocol.Command.MethodType method = 2;
int
getMethodValue()
.centrifugal.centrifuge.protocol.Command.MethodType method = 2;
com.google.protobuf.ByteString
getParams()
bytes params = 3;
-
-
-
Method Detail
-
getId
int getId()
uint32 id = 1;
- Returns:
- The id.
-
getMethodValue
int getMethodValue()
.centrifugal.centrifuge.protocol.Command.MethodType method = 2;
- Returns:
- The enum numeric value on the wire for method.
-
getMethod
Protocol.Command.MethodType getMethod()
.centrifugal.centrifuge.protocol.Command.MethodType method = 2;
- Returns:
- The method.
-
getParams
com.google.protobuf.ByteString getParams()
bytes params = 3;
- Returns:
- The params.
-
-