Uses of Class
ca.mcgill.cs.postina.scribe.PostinaScribeTransportMessage

Packages that use PostinaScribeTransportMessage
ca.mcgill.cs.postina.scribe   
 

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

Subclasses of PostinaScribeTransportMessage in ca.mcgill.cs.postina.scribe
 class PostinaReliableScribeTransportMessage
          A PostinaReliableScribeTransportMessage is the message actually sent over the network when reliability is required.
 

Fields in ca.mcgill.cs.postina.scribe declared as PostinaScribeTransportMessage
private  PostinaScribeTransportMessage ScribeRequestMessage.content
          The message that can be sent together with a subscription or unsubscription.
 

Methods in ca.mcgill.cs.postina.scribe that return PostinaScribeTransportMessage
protected  PostinaScribeTransportMessage ScribeRequestMessage.getContent()
          This method gets the message that is sent together with a subscription or unsubscription.
 

Methods in ca.mcgill.cs.postina.scribe with parameters of type PostinaScribeTransportMessage
protected  void ScribeApplication.publish(ScribeTopic topic, PostinaScribeTransportMessage content)
          Publishes the given ScribeTransportMessage to the given topic.
protected  void ScribeApplication.subscribe(java.util.Collection<rice.p2p.scribe.Topic> topics, PostinaScribeTransportMessage content)
          Subscribes this ScribeApplication to the Collection of Topics.
protected  void ScribeApplication.subscribe(ScribeTopic topic, PostinaScribeTransportMessage content)
          Subscribes this ScribeApplication to the given ScribeTopic.
 

Constructors in ca.mcgill.cs.postina.scribe with parameters of type PostinaScribeTransportMessage
ScribeRequestMessage(java.util.Collection<rice.p2p.scribe.Topic> topics, PostinaScribeTransportMessage content)
          The constructor for a ScribeRequestMessage.
SubscribeRequest(java.util.Collection<rice.p2p.scribe.Topic> topics, PostinaScribeTransportMessage content)
          The constructor for a SubcribeRequest takes the collection of the topics to which the client should subscribe and a message that is sent together with the subscription.