Uses of Class
peer2me.message.Message

Packages that use Message
peer2me.framework   
peer2me.message   
peer2me.network   
peer2me.network.bluetooth   
peer2me.session   
 

Uses of Message in peer2me.framework
 

Methods in peer2me.framework with parameters of type Message
 void FrameworkSubscriber.messageReceived(Message message)
          This method is called whenever a Message is received
 void Framework.messageReceived(Message message)
          This method is called whenever a new Message is received.
 void Framework.sendMessage(Message message)
          Passes on a Message to Session.
 

Uses of Message in peer2me.message
 

Methods in peer2me.message that return Message
 Message LinkedMessageList.getFirstMessage()
          Returns the Message which is contained in the first element in the list.
 

Methods in peer2me.message with parameters of type Message
 void LinkedMessageList.insert(Message message)
          Inserts a MessageListObject at the beginning of the list
 void LinkedMessageList.insertLast(Message message)
          Inserts a MessageListObject at the end of the list
 

Uses of Message in peer2me.network
 

Methods in peer2me.network with parameters of type Message
abstract  void Network.messageReceived(Message message)
          This method should be called whenever a Message is received
abstract  void Network.sendMessage(Message message)
          This method should send a Message to another Node
 

Uses of Message in peer2me.network.bluetooth
 

Methods in peer2me.network.bluetooth with parameters of type Message
 void Bluetooth.messageReceived(Message message)
          When the BluetoothConnectionHandler receives a message, it reconstructs it and invokes this method when the message is reconstructed.
 void BluetoothObjectPush.sendMessage(Message message)
          Sends the message given as parameter.
 void Bluetooth.sendMessage(Message message)
          Puts a message in the queue.
 

Uses of Message in peer2me.session
 

Methods in peer2me.session with parameters of type Message
 void Session.messageReceived(Message message)
          This method is called whenever a Message is received.
 void Session.sendMessage(Message message)
          Passes on a Message to Network.