Interface Message
- All Known Subinterfaces:
RawMessage
- All Known Implementing Classes:
BTMessageCancel, BTMessagePiece, BTMessageRequest, MessageAdapter, RawMessageAdapter
public interface Message
Basic peer message.
A message is uniquely identified by the combination of ID and version.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIs a data-bearing message, i.e.static final intIs a protocol-bearing message, i.e. -
Method Summary
Modifier and TypeMethodDescriptioncreate(ByteBuffer data) Create a new instance of this message by decoding the given byte serialization.voiddestroy()Destroy the message; i.e.Get textual description of this particular message.getID()Get message id.Get message payload data.intgetType()Get message type.
-
Field Details
-
TYPE_PROTOCOL_PAYLOAD
static final int TYPE_PROTOCOL_PAYLOADIs a protocol-bearing message, i.e. messaging/overhead data.- See Also:
-
TYPE_DATA_PAYLOAD
static final int TYPE_DATA_PAYLOADIs a data-bearing message, i.e. file data.- See Also:
-
-
Method Details
-
getID
-
getType
int getType()Get message type.- Returns:
- type
-
getDescription
-
getPayload
-
create
Create a new instance of this message by decoding the given byte serialization.- Parameters:
data- to deserialize- Returns:
- decoded message instance
- Throws:
MessageException- if the decoding process fails
-
destroy
void destroy()Destroy the message; i.e. perform cleanup actions.
-