Uses of Class
p2p.simulator.message.Message

Packages that use Message
p2p.simulator.message   
p2p.simulator.network   
 

Uses of Message in p2p.simulator.message
 

Constructors in p2p.simulator.message with parameters of type Message
DeleteResponse(long key, boolean exist, Message msg)
          Creates the body message of a lookup response message.
InsertResponse(long key, boolean exist, Message msg)
          Creates the body message of an insert response message.
LookupResponse(long key, boolean exist, Message msg)
          Creates the body message of a lookup response message.
 

Uses of Message in p2p.simulator.network
 

Methods in p2p.simulator.network that return Message
 Message Network.recvMsg(long id)
          Receives a message destinate to peer with the specific id.
 

Methods in p2p.simulator.network that return types with arguments of type Message
 java.util.Vector<Message> Network.getNetQueue()
          Returns the queue that stores the messages.
 

Methods in p2p.simulator.network with parameters of type Message
 void Network.broadcastMsg(Message msg)
          Should not be used.
 void Network.multicastMsg(Message msg, long begin, long end)
          Sends a message to a range of peers.
 void NetworkPipe.pushMsg(Message msg)
           
 void NetworkPipeImpl.pushMsg(Message msg)
           
 void Network.sendMsg(Message msg)
          Sends a message to peer.