Uses of Interface
planet.scribe.ScribeContent

Packages that use ScribeContent
planet.scribe   
planet.scribe.messaging   
planet.test.scribe   
 

Uses of ScribeContent in planet.scribe
 

Methods in planet.scribe with parameters of type ScribeContent
 void Scribe.subscribe(Topic topic, ScribeClient client, ScribeContent content)
          Subscribes the given client to the provided topic.
 void Scribe.publish(Topic topic, ScribeContent content)
          Publishes the given message to the topic.
 void Scribe.anycast(Topic topic, ScribeContent content)
          Anycasts the given content to a member of the given topic
 boolean ScribeClient.anycast(Topic topic, ScribeContent content)
          This method is invoked when an anycast is received for a topic which this client is interested in.
 void ScribeClient.deliver(Topic topic, ScribeContent content)
          This method is invoked when a message is delivered for a topic this client is interested in.
 void ScribeImpl.subscribe(Topic topic, ScribeClient client, ScribeContent content)
          Subscribes the given client to the provided topic.
 void ScribeImpl.publish(Topic topic, ScribeContent content)
          Publishes the given message to the topic.
 void ScribeImpl.anycast(Topic topic, ScribeContent content)
          Anycasts the given content to a member of the given topic
 

Uses of ScribeContent in planet.scribe.messaging
 

Fields in planet.scribe.messaging declared as ScribeContent
protected  ScribeContent AnycastMessage.content
          the content of this message
protected  ScribeContent PublishMessage.content
           
protected  ScribeContent PublishRequestMessage.content
           
 

Methods in planet.scribe.messaging that return ScribeContent
 ScribeContent AnycastMessage.getContent()
          Returns the content
 ScribeContent PublishMessage.getContent()
          Returns the content
 ScribeContent PublishRequestMessage.getContent()
          Returns the content
 

Methods in planet.scribe.messaging with parameters of type ScribeContent
 void AnycastMessage.setContent(ScribeContent content)
          Sets the content
 

Constructors in planet.scribe.messaging with parameters of type ScribeContent
AnycastMessage(NodeHandle source, Topic topic, ScribeContent content)
           
PublishMessage(NodeHandle source, Topic topic, ScribeContent content)
           
PublishRequestMessage(NodeHandle source, Topic topic, ScribeContent content)
           
SubscribeMessage(NodeHandle source, Topic topic, int id, ScribeContent content)
           
SubscribeMessage(NodeHandle source, Topic topic, Id previousParent, int id, ScribeContent content)
          Constructor which takes a unique integer Id
 

Uses of ScribeContent in planet.test.scribe
 

Methods in planet.test.scribe with parameters of type ScribeContent
 boolean ScribeApplication.anycast(Topic topic, ScribeContent content)
          DESCRIBE THE METHOD
 void ScribeApplication.deliver(Topic topic, ScribeContent content)
          DESCRIBE THE METHOD
 boolean ScribeClientTest.anycast(Topic topic, ScribeContent content)
          DESCRIBE THE METHOD
 void ScribeClientTest.deliver(Topic topic, ScribeContent content)
          DESCRIBE THE METHOD