Uses of Interface
planet.scribe.ScribeClient

Packages that use ScribeClient
planet.scribe   
planet.test.scribe   
 

Uses of ScribeClient in planet.scribe
 

Methods in planet.scribe that return ScribeClient
 ScribeClient[] ScribeImpl.getClients(Topic topic)
          Returns the list of clients for a given topic
 ScribeClient[] ScribeImpl.TopicManager.getClients()
          Gets the Clients attribute of the TopicManager object
 

Methods in planet.scribe with parameters of type ScribeClient
 void Scribe.subscribe(Topic topic, ScribeClient client)
          Subscribes the given client to the provided topic.
 void Scribe.subscribe(Topic topic, ScribeClient client, ScribeContent content)
          Subscribes the given client to the provided topic.
 void Scribe.unsubscribe(Topic topic, ScribeClient client)
          Unsubscribes the given client from the provided topic.
 void ScribeImpl.subscribe(Topic topic, ScribeClient client)
          Subscribes the given client to the provided topic.
 void ScribeImpl.subscribe(Topic topic, ScribeClient client, ScribeContent content)
          Subscribes the given client to the provided topic.
 void ScribeImpl.unsubscribe(Topic topic, ScribeClient client)
          Unsubscribes the given client from the provided topic.
 void ScribeImpl.TopicManager.addClient(ScribeClient client)
          Adds a feature to the Client attribute of the TopicManager object
 boolean ScribeImpl.TopicManager.removeClient(ScribeClient client)
          DESCRIBE THE METHOD
 boolean ScribePolicy.allowSubscribe(SubscribeMessage message, ScribeClient[] clients, NodeHandle[] children)
          This method is called when the newChild is about to become our child, and the policy should return whether or not the child should be allowed to become our child.
 boolean ScribePolicy.DefaultScribePolicy.allowSubscribe(SubscribeMessage message, ScribeClient[] clients, NodeHandle[] children)
          This method always return true;
 boolean ScribePolicy.LimitedScribePolicy.allowSubscribe(SubscribeMessage message, ScribeClient[] clients, NodeHandle[] children)
          This method returns (children.length < maxChildren-1);
 

Constructors in planet.scribe with parameters of type ScribeClient
ScribeImpl.TopicManager(Topic topic, ScribeClient client)
          Constructor for TopicManager.
 

Uses of ScribeClient in planet.test.scribe
 

Classes in planet.test.scribe that implement ScribeClient
 class ScribeApplication
           
 class ScribeClientTest