org.gudy.azureus2.plugins.messaging
Interface Message

All Known Subinterfaces:
RawMessage

public interface Message

Basic peer message. A message is uniquely identified by the combination of ID and version.


Field Summary
static int TYPE_DATA_PAYLOAD
          Is a data-bearing message, i.e.
static int TYPE_PROTOCOL_PAYLOAD
          Is a protocol-bearing message, i.e.
 
Method Summary
 Message create(ByteBuffer data)
          Create a new instance of this message by decoding the given byte serialization.
 void destroy()
          Destroy the message; i.e.
 String getDescription()
          Get textual description of this particular message.
 String getID()
          Get message id.
 ByteBuffer[] getPayload()
          Get message payload data.
 int getType()
          Get message type.
 

Field Detail

TYPE_PROTOCOL_PAYLOAD

static final int TYPE_PROTOCOL_PAYLOAD
Is a protocol-bearing message, i.e. messaging/overhead data.

See Also:
Constant Field Values

TYPE_DATA_PAYLOAD

static final int TYPE_DATA_PAYLOAD
Is a data-bearing message, i.e. file data.

See Also:
Constant Field Values
Method Detail

getID

String getID()
Get message id.

Returns:
id

getType

int getType()
Get message type.

Returns:
type

getDescription

String getDescription()
Get textual description of this particular message.

Returns:
description

getPayload

ByteBuffer[] getPayload()
Get message payload data.

Returns:
message data buffers

create

Message create(ByteBuffer data)
               throws MessageException
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.