Uses of Class
planet.commonapi.Id

Packages that use Id
planet.badchord   
planet.chord   
planet.chord.message   
planet.commonapi   
planet.commonapi.factory   
planet.commonapi.GML   
planet.generic.commonapi   
planet.generic.commonapi.factory   
planet.generic.commonapi.GML   
planet.generic.commonapi.message   
planet.results   
planet.scribe   
planet.scribe.messaging   
planet.simulate   
planet.symphony   
planet.symphony.listeners   
planet.symphony.messages   
planet.test.broadcast   
planet.test.dht   
planet.test.helloworld   
planet.test.symphonyDHT   
 

Uses of Id in planet.badchord
 

Constructors in planet.badchord with parameters of type Id
BadChordNode(Id id)
          Constructor, create a new BadChordNode instance with this node Id
 

Uses of Id in planet.chord
 

Subclasses of Id in planet.chord
 class ChordId
          Spedific Chord Id implementation.
 

Fields in planet.chord declared as Id
protected static Id ChordId.MAX
          Maximum value for the ChordId implementation.
protected  Id ChordNode.MAX
           
 Id[] ChordNode.start
           
 Id ChordNode.deux
           
 

Methods in planet.chord that return Id
 Id ChordId.add(Id offset)
          Returns an Id corresponding to this Id plus a given offset
 Id ChordId.subtractWithCarry(Id offset)
           
 Id ChordId.subtract(Id offset)
           
 Id ChordId.shift(int cnt, int fill)
          Shift operator. shift(-1,0) multiplies value of this by two, shift(1,0) divides by 2
 Id ChordId.shift(int cnt, int fill, boolean roundUp)
          Shift operator. shift(-1,0) multiplies value of this by two, shift(1,0) divides by 2
static Id ChordId.getMaximum()
          This method returns the maximum value for a ChordId that is possible to build, according the number of bits for key actually in use.
static Id ChordId.divide(long numberOfNodes)
          Divides the maximum domain of the node Id in numberOfNodes, to offers the offset between two consecutive nodes.
 

Methods in planet.chord with parameters of type Id
 Id ChordId.add(Id offset)
          Returns an Id corresponding to this Id plus a given offset
 Id ChordId.subtractWithCarry(Id offset)
           
 Id ChordId.subtract(Id offset)
           
 boolean ChordId.between(Id ccw, Id cw)
           
 boolean ChordId.clockwise(Id nid)
          Checks to see if the Id nid is clockwise or counterclockwise from this, on the ring.
protected  NodeHandle ChordNode.closest_preceding_finger(Id id)
          Finds the closest preceding finger of a node
 void ChordNode.join(Id bootstrap)
          The node joins in the network
 void ChordNode.lookup(Id id)
          Given a key, it generates the message and listener to obtain the owner of this one.
 java.util.Vector ChordNode.localLookup(Id key, int max, boolean safe)
          Returns a list of nodes that can be used as next hops on a route towards key.
 int ChordNode.firstLocalLookup(Id key)
          Detects de first position that key is in range of some position of finger table.
 boolean ChordNode.range(NodeHandle node, Id rank, Id leftKey, Id rightKey)
           
 java.util.Vector ChordNode.replicaSet(Id key, int maxRank)
           
 NodeHandle ChordNode.getClosestNodeHandle(Id id)
          Returns the NodeHandle closest to id.
 boolean GMLConstraintZmod.isACompliantNode(Id id)
           
 

Constructors in planet.chord with parameters of type Id
ChordNode(Id id)
          Constructor, create a new BadChordNode instance with this node Id
ChordNode.LookupListener(ChordNode node, Id key)
           
 

Uses of Id in planet.chord.message
 

Methods in planet.chord.message that return Id
 Id IdMessage.getNode()
           
 

Methods in planet.chord.message with parameters of type Id
 void IdMessage.setNode(Id id)
           
 

Constructors in planet.chord.message with parameters of type Id
IdMessage(Id id)
          Shows the Id to send with this message.
 

Uses of Id in planet.commonapi
 

Methods in planet.commonapi that return Id
 Id EndPoint.getId()
          Returns this node's id, which is its identifier in the namespace.
abstract  Id Id.add(Id offset)
          Returns an Id corresponding to this Id plus a given distance
abstract  Id Id.subtract(Id offset)
          Returns an Id corresponding to this Id minus a given distance
abstract  Id Id.shift(int cnt, int fill)
          Shift operator. shift(-1,0) multiplies value of this by two, shift(1,0) divides by 2
static Id Id.getMaximum()
          This method returns the maximum value for an Id that is possible to build.
static Id Id.divide(long numberOfNodes)
          Divides the maximum domain of the node Id in numberOfNodes, to offers the offset between two consecutive nodes.
 Id Node.getId()
          Returns the Id of this node
abstract  Id NodeHandle.getId()
          Returns this node's id.
 

Methods in planet.commonapi with parameters of type Id
 void Application.deliver(Id id, Message message)
          This method is called on the application at the destination node for the given id.
 void EndPoint.broadcast(Id id, Message message)
          Sends a broadcast message to all nodes in the network.
 void EndPoint.route(Id id, Message message, NodeHandle hint)
          This method makes an attempt to route the message to the root of the given id.
 java.util.Vector EndPoint.localLookup(Id key, int max, boolean safe)
          Returns a list of nodes that can be used as next hops on a route towards key.
 java.util.Vector EndPoint.replicaSet(Id key, int maxRank)
          Returns an ordered set of nodes on which replicas of the object with this key can be stored.
 boolean EndPoint.range(NodeHandle node, Id rank, Id leftKey, Id rightkey)
          This operation provides information about ranges of keys for which the node is currently a root.
abstract  boolean Id.between(Id ccw, Id cw)
          Checks if this Id is between two given ids ccw (inclusive) and cw (exclusive) on the circle
 boolean Id.Ebetween(Id init, Id end)
          Checks if this Id is in interval [init,end)
 boolean Id.betweenE(Id init, Id end)
          Checks if this Id is in interval (init,end]
abstract  boolean Id.clockwise(Id nid)
          Checks to see if the Id nid is clockwise or counterclockwise from this, on the ring.
abstract  Id Id.add(Id offset)
          Returns an Id corresponding to this Id plus a given distance
abstract  Id Id.subtract(Id offset)
          Returns an Id corresponding to this Id minus a given distance
 void Id.setValue(Id newValue)
          Sets the new value with Id newValue.
 void Network.joinNode(Node node, Id bootstrap)
          Network joins a node with specified bootstrap.
 int Network.joinNodes(int size, Id[] bootstrap)
          Generates size new Nodes joins them by any of the bootstraps.
 void Network.leaveNodes(Id[] nodes)
          Leave the ring the nodes which his Id appears in the array nodes.
 void Network.failNodes(Id[] nodes)
          nodes shows all nodes Id that have failed.
 int Network.registerApplication(Id[] nodes)
          Register to all Nodes whose Id appears in array Ids of nodes the Application specified at properties file.
 boolean Network.existNodeWithId(Id id)
          Inform if exist on the network one node with Id id.
 int Network.getProximity(Id nodeA, Id nodeB)
          Evaluates the proximity between the two nodes.
 void Node.join(Id nodeId)
          This Node joins another node identified by nodeId.
 java.util.Vector Node.localLookup(Id key, int max, boolean safe)
          Returns a list of nodes that can be used as next hops on a route towards key.
 java.util.Vector Node.replicaSet(Id key, int maxRank)
          Returns an ordered set of nodes on which replicas of the object with this key can be stored.
 boolean Node.range(NodeHandle node, Id rank, Id leftKey, Id rightKey)
          This operation provides information about ranges of keys for which the node is currently a root.
 

Uses of Id in planet.commonapi.factory
 

Methods in planet.commonapi.factory that return Id
 Id IdFactory.buildId()
          Builds an Id with the actual configuration of network topology and size.
 Id IdFactory.buildId(int material)
          Builds a protocol-specific Id given the source data.
 Id IdFactory.buildId(double material)
          Builds a protocol-specific Id given the source data.
 Id IdFactory.buildId(byte[] material)
          Builds a protocol-specific Id given the source data.
 Id IdFactory.buildId(int[] material)
          Builds a protocol-specific Id given the source data as int[].
 Id IdFactory.buildKey(java.lang.String materialToHash)
          Builds a protocol-specific Id by using the given string as source data for a hash function (like SHA-1).
 Id IdFactory.buildId(java.lang.String material)
          Generate an Id from the String as its internal value.
 Id IdFactory.buildId(java.math.BigInteger material)
          Generate an Id from a BigInteger, that includes its internal value.
 Id IdFactory.buildId(java.lang.String material, java.lang.String algorithm)
          Builds a new Id from an arbitray string applying a one-way hashing algorithm, such as SHA-1 or MD5.
 Id IdFactory.buildRandomId()
          Builds an uniformly distributed random Id.
 

Methods in planet.commonapi.factory with parameters of type Id
 Node NodeFactory.buildNode(Id id)
          Builds a Node using the Id that appears in parameter, using the default Class for him.
 NodeHandle NodeHandleFactory.buildNodeHandle(Id nodeId, boolean alive)
          Builds a NodeHandle using the default NodeHandle class.
 

Uses of Id in planet.commonapi.GML
 

Methods in planet.commonapi.GML that return Id
 Id GMLEdge.getSource()
           
 Id GMLEdge.getTarget()
           
 

Methods in planet.commonapi.GML with parameters of type Id
 boolean GMLConstraint.isACompliantNode(Id id)
          This method returns true if a Node is compliant according to this GMLConstraint.
 void GMLEdge.setSource(Id source)
           
 void GMLEdge.setTarget(Id target)
           
 GMLEdge GMLFactory.buildEdge(Id source, Id target, boolean directed)
          Build a GML edge with the specified values.
 GMLEdge GMLFactory.buildEdge(Id source, Id target, boolean directed, java.lang.String fill)
          Build a GML edge with the specified values.
 

Uses of Id in planet.generic.commonapi
 

Fields in planet.generic.commonapi declared as Id
protected  Id NetworkNodeImpl.id
           
protected  Id NodeImpl.id
           
 

Methods in planet.generic.commonapi that return Id
 Id EndPointImpl.getId()
          Returns the identification of the related Node
 Id NetworkNodeImpl.getId()
          Returns the id of the node *
 Id NodeHandleImpl.getId()
          Gets the Id of the related node
 Id NodeImpl.getId()
          Returns the id of the node *
 

Methods in planet.generic.commonapi with parameters of type Id
 void EndPointImpl.route(Id id, Message message, NodeHandle hint)
          This method makes an attempt to route the message to the root of the given id.
 void EndPointImpl.broadcast(Id key, Message message)
          Sends a broadcast message to the network.
 java.util.Vector EndPointImpl.replicaSet(Id key, int maxRank)
           
 java.util.Vector EndPointImpl.localLookup(Id key, int max, boolean safe)
          Returns a list of nodes that can be used as next hops on a route towards key.
 boolean EndPointImpl.range(NodeHandle node, Id rank, Id leftKey, Id rightKey)
           
 void NetworkImpl.joinNode(Node node, Id bootstrap)
          Adds node to the network, using the node with Id bootstrap to enter it.
 int NetworkImpl.joinNodes(int size, Id[] bootstrap)
          Add size nodes to the actual network.
 void NetworkImpl.leaveNodes(Id[] nodes)
          Leave theese nodes for the network.
 void NetworkImpl.failNodes(Id[] nodes)
          Runs the stabilization process after each fail node.
 int NetworkImpl.registerApplication(Id[] nodes)
          Register the Application specified at properties file to the specified nodes by theirs Ids.
 boolean NetworkImpl.existNodeWithId(Id id)
          Inform if exist on the network one node with Id id.
 int NetworkImpl.getProximity(Id nodeA, Id nodeB)
          Always returns 1 (one).
abstract  void NetworkNodeImpl.join(Id bootstrap)
          The node joins in the network
abstract  void NetworkNodeImpl.lookup(Id key)
          Lookup of a key
abstract  void NodeImpl.join(Id bootstrap)
          The node joins in the network
abstract  void NodeImpl.lookup(Id key)
          Lookup of a key
abstract  NodeHandle NodeImpl.getClosestNodeHandle(Id id)
          Returns the NodeHandle closest to id.
 

Constructors in planet.generic.commonapi with parameters of type Id
NetworkNodeImpl(Id id)
          Constructor, create a new Node instance with node Id
NodeHandleImpl(Id nodeId, boolean alive)
          Builds a new NodeHandle for a Node, only identify its Id and sets its alive flag.
NodeImpl(Id id)
          Constructor, create a new Node instance with node Id
 

Uses of Id in planet.generic.commonapi.factory
 

Fields in planet.generic.commonapi.factory declared as Id
protected  Id IdFactoryImpl.actualValue
          Id just generated.
protected  Id IdFactoryImpl.chunkValue
          Actual value to add to the actualValue to obtain the next Id.
 

Methods in planet.generic.commonapi.factory that return Id
static Id GenericFactory.buildId()
           
static Id GenericFactory.buildId(int material)
           
static Id GenericFactory.buildId(double material)
           
static Id GenericFactory.buildId(byte[] material)
           
static Id GenericFactory.buildId(int[] material)
           
static Id GenericFactory.buildKey(java.lang.String string)
           
static Id GenericFactory.buildId(java.lang.String string)
           
static Id GenericFactory.buildId(java.math.BigInteger bigNumber)
           
static Id GenericFactory.buildId(java.lang.String material, java.lang.String algorithm)
           
static Id GenericFactory.buildRandomId()
           
 Id IdFactoryImpl.buildId()
          Builds an Id with the actual configuration of network topology and size.
protected  Id IdFactoryImpl.buildId(java.lang.Object[] params, java.lang.reflect.Constructor cons)
          Builds an Id with the arguments params, using the Constructor cons.
 Id IdFactoryImpl.buildRandomId()
          Builds a random Id using the Random constructor of the target Id.
 Id IdFactoryImpl.buildId(double material)
          Builds an Id with the double parameter as its internal value.
 Id IdFactoryImpl.buildId(int material)
          Builds an Id with the int parameter as its internal value.
 Id IdFactoryImpl.buildId(byte[] material)
          Generate an Id from material in byte[] format as its internal value.
 Id IdFactoryImpl.buildId(int[] material)
          Generate an Id from material in int[] format, as its internal value.
 Id IdFactoryImpl.buildKey(java.lang.String string)
          Generate an Id from a String with SHA-1 hash function.
 Id IdFactoryImpl.buildId(java.lang.String material)
          Generate an Id from a String that contains its internal value.
 Id IdFactoryImpl.buildId(java.lang.String material, java.lang.String algorithm)
          Builds a new Id from an arbitray string applying a one-way hashing algorithm, such as SHA-1 or MD5.
 Id IdFactoryImpl.buildId(java.math.BigInteger bigNumber)
          Generate an Id from the BigInteger as its internal value.
 

Methods in planet.generic.commonapi.factory with parameters of type Id
static Node GenericFactory.buildNode(Id id)
           
static NodeHandle GenericFactory.buildNodeHandle(Id nodeId, boolean alive)
          Builds a new NodeHandle for specifieds Node Id and alive flag.
static GMLEdge GenericFactory.buildEdge(Id source, Id target, boolean directed)
           
static GMLEdge GenericFactory.buildEdge(Id source, Id target, boolean directed, java.lang.String fill)
           
 Node NodeFactoryImpl.buildNode(Id id)
          Builds a node with the actual implementation class of NodeImpl and the specified id.
 NodeHandle NodeHandleFactoryImpl.buildNodeHandle(Id id, boolean alive)
          Builds a NodeHandle with the actual implementation class of NodeHandle and specifieds id and alive flag.
 

Constructors in planet.generic.commonapi.factory with parameters of type Id
IdFactoryImpl.DistributedIdIterator(long networkSize, Id initialValue, Id chunkValue)
          Initialize this instance with the specified values.
 

Uses of Id in planet.generic.commonapi.GML
 

Fields in planet.generic.commonapi.GML declared as Id
protected  Id GMLEdgeImpl.source
           
protected  Id GMLEdgeImpl.target
           
 

Methods in planet.generic.commonapi.GML that return Id
 Id GMLEdgeImpl.getSource()
           
 Id GMLEdgeImpl.getTarget()
           
 

Methods in planet.generic.commonapi.GML with parameters of type Id
 void GMLEdgeImpl.setSource(Id source)
           
 void GMLEdgeImpl.setTarget(Id target)
           
 GMLEdge GMLFactoryImpl.buildEdge(Id source, Id target, boolean directed)
          Build a GML edge with the specified values.
 GMLEdge GMLFactoryImpl.buildEdge(Id source, Id target, boolean directed, java.lang.String fill)
          Build a GML edge with the specified values.
 boolean IdleGMLConstraint.isACompliantNode(Id id)
          Always return true.
 

Constructors in planet.generic.commonapi.GML with parameters of type Id
GMLEdgeImpl(Id source, Id target, boolean isDirected)
           
GMLEdgeImpl(Id source, Id target, boolean isDirected, java.lang.String fill)
           
 

Uses of Id in planet.generic.commonapi.message
 

Methods in planet.generic.commonapi.message that return Id
 Id DataMessage.getMessageKey()
           
 

Methods in planet.generic.commonapi.message with parameters of type Id
 void DataMessage.setMessageKey(Id messageKey)
           
 

Constructors in planet.generic.commonapi.message with parameters of type Id
DataMessage(Id key, Message msg)
           
 

Uses of Id in planet.results
 

Methods in planet.results that return Id
 Id NodeFlowStatus.getId()
           
 

Methods in planet.results with parameters of type Id
static void LinkStateResults.updateIncoming(Id node)
          Stores the number of incoming messages received by the node.
static void LinkStateResults.updateOutcoming(Id node)
          Stores the number of outcoming messages sent by the node.
static void LinkStateResults.updateDropped(Id node)
          Stores the number of messages dropped by the node.
 

Constructors in planet.results with parameters of type Id
NodeFlowStatus(Id node)
           
 

Uses of Id in planet.scribe
 

Fields in planet.scribe declared as Id
protected  Id[] ScribeImpl.TopicManager.pathToRoot
          The current path to the root for this node
protected  Id Topic.id
          The Id to which this topic is mapped
 

Methods in planet.scribe that return Id
 Id ScribeImpl.getNodeId()
          Returns the Id of the local node
 Id[] ScribeImpl.TopicManager.getPathToRoot()
          Gets the PathToRoot attribute of the TopicManager object
 Id Topic.getId()
          Returns the Id to which this topic is mapped
static Id Topic.getId(IdFactory factory, java.lang.String name)
          Returns the Id to which the string is mapped
 

Methods in planet.scribe with parameters of type Id
 void ScribeImpl.deliver(Id id, Message message)
          This method is called on the application at the destination node for the given id.
 void ScribeImpl.TopicManager.setPathToRoot(Id[] pathToRoot)
          Sets the PathToRoot attribute of the TopicManager object
 

Constructors in planet.scribe with parameters of type Id
Topic(Id id)
          Constructor which takes an Id for this topic
 

Uses of Id in planet.scribe.messaging
 

Fields in planet.scribe.messaging declared as Id
protected  Id[] SubscribeAckMessage.pathToRoot
          The contained path to the root
protected  Id SubscribeMessage.previousParent
          The previous parent
 

Methods in planet.scribe.messaging that return Id
 Id ReplicaSetMessage.getMessageKey()
           
 Id[] SubscribeAckMessage.getPathToRoot()
          Returns the path to the root for the node receiving this message
 Id SubscribeMessage.getPreviousParent()
          Returns the node who is trying to subscribe
 

Methods in planet.scribe.messaging with parameters of type Id
 void ReplicaSetMessage.setMessageKey(Id messageKey)
           
 

Constructors in planet.scribe.messaging with parameters of type Id
ReplicaSetMessage(Id sourceId, int maxRank)
          Builds the message to inform the maximum number of replica set that is required.
ReplicaSetMessage(Id sourceId, java.util.Vector replicaSet)
          Builds the message to inform the required replica set.
SubscribeAckMessage(NodeHandle source, Topic topic, Id[] pathToRoot, int id)
           
SubscribeMessage(NodeHandle source, Topic topic, Id previousParent, int id, ScribeContent content)
          Constructor which takes a unique integer Id
 

Uses of Id in planet.simulate
 

Methods in planet.simulate that return Id
 Id Event.getFrom()
           
 Id Event.getTo()
           
 Id IEvent.getFrom()
           
 Id IEvent.getTo()
           
static Id Results.getLookup(Id key)
           
 

Methods in planet.simulate with parameters of type Id
static void Logger.logSend(Id id, RouteMessage msg, int lvl)
          Logs a sent RouteMessage.
static void Logger.logReceive(Id id, RouteMessage msg, int lvl)
          Logs a received RouteMessage
 void NetworkSimulator.addNode(Node node, Id bootstrap)
          Joins a new node to the simulated network.
 void NetworkSimulator.addNode(Id id, Id bootstrap)
          Create and joins a new node to the simulated network.
static void Results.numMessagesTime(Id id, int step, int num, java.lang.String type)
           
static void Results.updateHopsMsg(Id source, java.lang.String key_msg)
           
static void Results.addLookup(Id key, Id own)
           
static Id Results.getLookup(Id key)
           
 void Simulator.addNode(Node node, Id bootstrap)
          Joins a new node to the simulated network.
 Node Simulator.addNode(Id id, Id bootstrap)
          Create and joins a new node to the simulated network.
 

Constructors in planet.simulate with parameters of type Id
Event(Id from, Id to, int type, int times)
           
Event(Id from, Id to, int type, int times, int time)
           
SampleGenerator(Id id, Id target, int type, int times)
           
 

Uses of Id in planet.symphony
 

Subclasses of Id in planet.symphony
 class SymphonyId
          This Id is backed up a double value.
 

Fields in planet.symphony declared as Id
protected static Id SymphonyId.MAX
          Inform the maximum value for this SymphonyId (1.0).
 

Methods in planet.symphony that return Id
 Id SymphonyId.add(Id offset)
           
 Id SymphonyId.subtract(Id offset)
           
 Id SymphonyId.shift(int cnt, int fill)
           
static Id SymphonyId.getMaximum()
          This method returns the maximum value for a SymphonyId that is possible to build.
static Id SymphonyId.divide(long num)
          Overwrite the static method to return the required Id.
 

Methods in planet.symphony with parameters of type Id
 boolean SymphonyId.between(Id ccw, Id cw)
           
 boolean SymphonyId.clockwise(Id nid)
           
 Id SymphonyId.add(Id offset)
           
 Id SymphonyId.subtract(Id offset)
           
 void SymphonyNode.lookup(Id key)
           
 void SymphonyNode.join(Id bsId)
           
 java.util.Vector SymphonyNode.localLookup(Id key, int max, boolean safe)
          Returns a list of nodes that can be used as next hops on a route towards key.
 boolean SymphonyNode.range(NodeHandle node, Id rank, Id leftKey, Id rightKey)
          This methods ALWAYS return false.
 java.util.Vector SymphonyNode.replicaSet(Id key, int maxRank)
          Returns an ordered set of nodes on which replicas of the object with this key can be stored.
 NodeHandle SymphonyNode.getClosestNodeHandle(Id id)
          Returns the NodeHandle closest to id.
 

Constructors in planet.symphony with parameters of type Id
SymphonyNode(Id id)
           
 

Uses of Id in planet.symphony.listeners
 

Constructors in planet.symphony.listeners with parameters of type Id
LookupListener(Id nodeId, Id key)
           
 

Uses of Id in planet.symphony.messages
 

Methods in planet.symphony.messages that return Id
 Id SetPredMessage.getPredId()
           
 Id SetSuccMessage.getSuccId()
           
 

Methods in planet.symphony.messages with parameters of type Id
 void SetPredMessage.setPredId(Id predId)
           
 void SetSuccMessage.setSuccId(Id succId)
           
 

Constructors in planet.symphony.messages with parameters of type Id
SetPredMessage(Id predId)
           
SetSuccMessage(Id succId)
           
 

Uses of Id in planet.test.broadcast
 

Methods in planet.test.broadcast that return Id
 Id DHTPeerTestMessage.getSourceNodeId()
          Gets Id of source Node, who sends this message.
 

Methods in planet.test.broadcast with parameters of type Id
 void DHTApplication.deliver(Id id, Message message)
          This method is called on the application at the destination node for the given id.
 void DHTPeerTestMessage.setSourceNodeId(Id id)
          Sets a new Id of source Node, who sends (re-send) this message.
 

Constructors in planet.test.broadcast with parameters of type Id
DHTPeerTestMessage(Id sourceNodeId, java.lang.String data)
          Constructor for this Message.
 

Uses of Id in planet.test.dht
 

Methods in planet.test.dht with parameters of type Id
 void DHTApplication.deliver(Id id, Message message)
          This method is called on the application at the destination node for the given id.
 

Uses of Id in planet.test.helloworld
 

Methods in planet.test.helloworld with parameters of type Id
 void DHTApplication.deliver(Id id, Message message)
          This method is called on the application at the destination node for the given id.
 

Uses of Id in planet.test.symphonyDHT
 

Methods in planet.test.symphonyDHT that return Id
 Id SymphonyDHTMessage.getSource()
           
 

Methods in planet.test.symphonyDHT with parameters of type Id
 void SymphonyDHTApplication.deliver(Id id, Message message)
          This method is called on the application at the destination node for the given id.
 void SymphonyDHTMessage.setSource(Id source)
           
 

Constructors in planet.test.symphonyDHT with parameters of type Id
SymphonyDHTMessage(Id source, int type)
          Builds a new Message with the specified source Node origNode and specified type type
SymphonyDHTMessage(Id source, int type, java.lang.String key, java.lang.String value, java.util.Vector MultiValue)
          Builds a new Message with the specified source Node and type, key/value pairs.
SymphonyDHTMessage(Id source, int type, java.lang.String key, java.lang.String value)
           
SymphonyDHTMessage(Id source, int type, java.lang.String key, java.util.Vector MultiValue)