public interface IClientGCMsg
| Modifier and Type | Method and Description |
|---|---|
void |
deserialize(byte[] data)
Initializes this client message by deserializing the specified data.
|
int |
getMsgType()
Gets the network message type of this client message.
|
JobID |
getSourceJobID()
Gets the source job id for this client message.
|
JobID |
getTargetJobID()
Gets the target job id for this client message.
|
boolean |
isProto()
Gets a value indicating whether this client message is protobuf backed.
|
byte[] |
serialize()
serializes this client message instance to a byte array.
|
void |
setSourceJobID(JobID jobID)
Sets the source job id for this client message.
|
void |
setTargetJobID(JobID jobID)
Sets the target job id for this client message.
|
boolean isProto()
int getMsgType()
JobID getTargetJobID()
void setTargetJobID(JobID jobID)
jobID - The target job id.JobID getSourceJobID()
void setSourceJobID(JobID jobID)
jobID - The source job id.byte[] serialize()
void deserialize(byte[] data)
data - The data representing a client message.