Uses of Interface
ca.mcgill.cs.postina.PostinaMessage

Packages that use PostinaMessage
ca.mcgill.cs.postina Provides the classes and methodes publicly available to users of Postina. 
ca.mcgill.cs.postina.scribe   
 

Uses of PostinaMessage in ca.mcgill.cs.postina
 

Methods in ca.mcgill.cs.postina that return PostinaMessage
 PostinaMessage PostinaNetworkLayer.getNextMessage()
          Gets the next message in the queue.
 

Methods in ca.mcgill.cs.postina with parameters of type PostinaMessage
 void PostinaMsgListener.receiveMessage(PostinaMessage msg)
          receiveMessage is called to inform applications about a new PostinaMessage.
 

Uses of PostinaMessage in ca.mcgill.cs.postina.scribe
 

Classes in ca.mcgill.cs.postina.scribe that implement PostinaMessage
 class PostinaReliableScribeTransportMessage
          A PostinaReliableScribeTransportMessage is the message actually sent over the network when reliability is required.
 class PostinaScribeTransportMessage
          A ScribeTransportMessage is the message used internally to encapsulate the message to be sent over the network.
 

Fields in ca.mcgill.cs.postina.scribe with type parameters of type PostinaMessage
private  java.util.Collection<PostinaMessage> ScribeNetworkLayer.messageQueue
          The message queue where incoming PostinaMessages can be placed.
 

Methods in ca.mcgill.cs.postina.scribe that return PostinaMessage
 PostinaMessage ScribeNetworkLayer.getNextMessage()
           
 

Methods in ca.mcgill.cs.postina.scribe with parameters of type PostinaMessage
protected  void ScribeApplication.informListeners(PostinaMessage message)
          This method informs registered listeners about a new message.
 void ScribeNetworkLayer.receiveMessage(PostinaMessage msg)