Class GatherProtocolMessage
java.lang.Object
uk.ac.manchester.spinnaker.messages.sdp.SpinnakerRequest
uk.ac.manchester.spinnaker.messages.sdp.SDPMessage
uk.ac.manchester.spinnaker.front_end.download.GatherProtocolMessage
- All Implemented Interfaces:
SerializableMessage
- Direct Known Subclasses:
ClearMessage
,MissingSequenceNumbersMessage
,StartSendingMessage
public abstract class GatherProtocolMessage extends SDPMessage
A message participating in the fast-data-download protocol. This protocol
looks like SDP in general.
- Author:
- Donal Fellows
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GatherProtocolMessage.ID
The various IDs of messages used in the fast download protocol. -
Field Summary
-
Constructor Summary
Constructors Modifier Constructor Description protected
GatherProtocolMessage(uk.ac.manchester.spinnaker.machine.HasCoreLocation destination, SDPPort destPort, ByteBuffer payload)
Create a protocol message. -
Method Summary
Methods inherited from class uk.ac.manchester.spinnaker.messages.sdp.SDPMessage
addToBuffer, getData
Methods inherited from class uk.ac.manchester.spinnaker.messages.sdp.SpinnakerRequest
getMessageData
-
Constructor Details
-
GatherProtocolMessage
protected GatherProtocolMessage(uk.ac.manchester.spinnaker.machine.HasCoreLocation destination, SDPPort destPort, ByteBuffer payload)Create a protocol message.- Parameters:
destination
- Where to send the messagedestPort
- Which SDP port to send the message topayload
- What the contents of the message should be.
-