Rice Pastry API

Uses of Class
rice.p2p.commonapi.NodeHandle

Packages that use NodeHandle
rice.p2p.commonapi   
rice.p2p.past   
rice.p2p.past.messaging   
rice.p2p.past.testing   
rice.p2p.scribe   
rice.p2p.scribe.messaging   
rice.p2p.scribe.testing   
rice.p2p.splitstream   
rice.past   
rice.past.testing   
rice.pastry   
rice.pastry.commonapi   
rice.pastry.direct   
rice.pastry.dist   
rice.pastry.leafset   
rice.pastry.rmi   
rice.pastry.routing   
rice.pastry.testing   
rice.pastry.wire   
 

Uses of NodeHandle in rice.p2p.commonapi
 

Methods in rice.p2p.commonapi that return NodeHandle
 rice.p2p.commonapi.NodeHandle Endpoint.getLocalNodeHandle()
          Returns a handle to the local node below this endpoint.
 rice.p2p.commonapi.NodeHandle NodeHandleSet.getHandle(rice.p2p.commonapi.Id id)
          Finds the NodeHandle associated with the NodeId.
 rice.p2p.commonapi.NodeHandle NodeHandleSet.getHandle(int i)
          Gets the ith element in the set.
 rice.p2p.commonapi.NodeHandle NodeHandleSet.removeHandle(rice.p2p.commonapi.Id id)
          Removes a node id and its handle from the set.
 rice.p2p.commonapi.NodeHandle RouteMessage.getNextHopHandle()
          Returns the next hop handle for this message
 

Methods in rice.p2p.commonapi with parameters of type NodeHandle
 void Application.update(rice.p2p.commonapi.NodeHandle handle, boolean joined)
          This method is invoked to inform the application that the given node has either joined or left the neighbor set of the local node, as the set would be returned by the neighborSet call.
 void Endpoint.route(rice.p2p.commonapi.Id id, rice.p2p.commonapi.Message message, rice.p2p.commonapi.NodeHandle hint)
          This method makes an attempt to route the message to the root of the given id.
 rice.p2p.commonapi.IdRange Endpoint.range(rice.p2p.commonapi.NodeHandle handle, int rank, rice.p2p.commonapi.Id lkey)
          This operation provides information about ranges of keys for which the node is currently a rank-root.
 boolean NodeHandleSet.putHandle(rice.p2p.commonapi.NodeHandle handle)
          Puts a NodeHandle into the set.
 void RouteMessage.setNextHopHandle(rice.p2p.commonapi.NodeHandle nextHop)
          Sets the next hop handle for this message
 

Uses of NodeHandle in rice.p2p.past
 

Methods in rice.p2p.past that return NodeHandle
 rice.p2p.commonapi.NodeHandle ContentHashPastContentHandle.getNodeHandle()
          Returns the NodeHandle of the Past node on which the object associated with this handle is stored
 rice.p2p.commonapi.NodeHandle Past.getLocalNodeHandle()
          get the nodeHandle of the local Past node
 rice.p2p.commonapi.NodeHandle PastContentHandle.getNodeHandle()
          get the NodeHandle of the Past node on which the object associated with this handle is stored
 rice.p2p.commonapi.NodeHandle PastImpl.getLocalNodeHandle()
          get the nodeHandle of the local Past node
 

Methods in rice.p2p.past with parameters of type NodeHandle
 void PastImpl.update(rice.p2p.commonapi.NodeHandle handle, boolean joined)
          This method is invoked to inform the application that the given node has either joined or left the neighbor set of the local node, as the set would be returned by the neighborSet call.
 

Constructors in rice.p2p.past with parameters of type NodeHandle
ContentHashPastContentHandle(rice.p2p.commonapi.NodeHandle nh, rice.p2p.commonapi.Id id)
          Constructor
 

Uses of NodeHandle in rice.p2p.past.messaging
 

Fields in rice.p2p.past.messaging declared as NodeHandle
protected  rice.p2p.commonapi.NodeHandle PastMessage.source
           
 

Methods in rice.p2p.past.messaging that return NodeHandle
 rice.p2p.commonapi.NodeHandle LookupMessage.getPreviousNodeHandle()
          Method which returns the previous hop (where the message was just at)
 rice.p2p.commonapi.NodeHandle PastMessage.getSource()
          Method which returns this messages' source address
 

Methods in rice.p2p.past.messaging with parameters of type NodeHandle
 void LookupMessage.addHop(rice.p2p.commonapi.NodeHandle handle)
          Method which is designed to be overridden by subclasses if they need to keep track of where they've been.
 void PastMessage.addHop(rice.p2p.commonapi.NodeHandle handle)
          Method which is designed to be overridden by subclasses if they need to keep track of where they've been.
 

Constructors in rice.p2p.past.messaging with parameters of type NodeHandle
CacheMessage(int uid, rice.p2p.past.PastContent content, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor which takes a unique integer Id and the local id
ContinuationMessage(int uid, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor which takes a unique integer Id, as well as the data to be stored
FetchHandleMessage(int uid, rice.p2p.commonapi.Id id, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor
FetchMessage(int uid, rice.p2p.past.PastContentHandle handle, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor
InsertMessage(int uid, rice.p2p.past.PastContent content, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor which takes a unique integer Id, as well as the data to be stored
LookupHandlesMessage(int uid, rice.p2p.commonapi.Id id, int max, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor
LookupMessage(int uid, rice.p2p.commonapi.Id id, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor
MessageLostMessage(int uid, rice.p2p.commonapi.NodeHandle local)
          Constructor which takes a unique integer Id and the local id
PastMessage(int id, rice.p2p.commonapi.NodeHandle source, rice.p2p.commonapi.Id dest)
          Constructor which takes a unique integer Id
 

Uses of NodeHandle in rice.p2p.past.testing
 

Fields in rice.p2p.past.testing declared as NodeHandle
protected  rice.p2p.commonapi.NodeHandle PastRegrTest.TestPastContentHandle.handle
           
 

Methods in rice.p2p.past.testing that return NodeHandle
 rice.p2p.commonapi.NodeHandle PastRegrTest.TestPastContentHandle.getNodeHandle()
           
 rice.p2p.commonapi.NodeHandle PastRegrTest.TestRouteMessage.getNextHopHandle()
           
 

Methods in rice.p2p.past.testing with parameters of type NodeHandle
 void PastRegrTest.TestRouteMessage.setNextHopHandle(rice.p2p.commonapi.NodeHandle nextHop)
           
 

Constructors in rice.p2p.past.testing with parameters of type NodeHandle
PastRegrTest.TestRouteMessage(rice.p2p.commonapi.Id id, rice.p2p.commonapi.NodeHandle nextHop, rice.p2p.commonapi.Message message)
           
 

Uses of NodeHandle in rice.p2p.scribe
 

Fields in rice.p2p.scribe declared as NodeHandle
protected  rice.p2p.commonapi.NodeHandle ScribeImpl.handle
          the local node handle
protected  rice.p2p.commonapi.NodeHandle ScribeImpl.TopicManager.parent
          DESCRIBE THE FIELD
 

Methods in rice.p2p.scribe that return NodeHandle
 rice.p2p.commonapi.NodeHandle[] Scribe.getChildren(rice.p2p.scribe.Topic topic)
          Returns the list of children for a given topic
 rice.p2p.commonapi.NodeHandle[] ScribeImpl.getChildren(rice.p2p.scribe.Topic topic)
          Returns the list of children for a given topic
 rice.p2p.commonapi.NodeHandle ScribeImpl.getParent(rice.p2p.scribe.Topic topic)
          Returns the parent for a given topic
 rice.p2p.commonapi.NodeHandle ScribeImpl.TopicManager.getParent()
          Gets the Parent attribute of the TopicManager object
 rice.p2p.commonapi.NodeHandle[] ScribeImpl.TopicManager.getChildren()
          Gets the Children attribute of the TopicManager object
 

Methods in rice.p2p.scribe with parameters of type NodeHandle
 void Scribe.addChild(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Adds a child to the given topic
 void Scribe.removeChild(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Removes a child from the given topic
 void ScribeClient.childAdded(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Informs this client that a child was added to a topic in which it was interested in.
 void ScribeClient.childRemoved(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Informs this client that a child was removed from a topic in which it was interested in.
 void ScribeImpl.addChild(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Adds a child to the given topic
 void ScribeImpl.removeChild(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Removes a child from the given topic
protected  void ScribeImpl.removeChild(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child, boolean sendDrop)
          Removes a child from the given topic
 void ScribeImpl.update(rice.p2p.commonapi.NodeHandle handle, boolean joined)
          This method is invoked to inform the application that the given node has either joined or left the neighbor set of the local node, as the set would be returned by the neighborSet call.
 void ScribeImpl.TopicManager.setParent(rice.p2p.commonapi.NodeHandle handle)
          Sets the Parent attribute of the TopicManager object
 void ScribeImpl.TopicManager.addChild(rice.p2p.commonapi.NodeHandle child)
          Adds a feature to the Child attribute of the TopicManager object
 boolean ScribeImpl.TopicManager.removeChild(rice.p2p.commonapi.NodeHandle child)
          DESCRIBE THE METHOD
 boolean ScribePolicy.allowSubscribe(rice.p2p.scribe.messaging.SubscribeMessage message, rice.p2p.scribe.ScribeClient[] clients, rice.p2p.commonapi.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.
 void ScribePolicy.directAnycast(rice.p2p.scribe.messaging.AnycastMessage message, rice.p2p.commonapi.NodeHandle parent, rice.p2p.commonapi.NodeHandle[] children)
          This method is called when an anycast is received which is not satisfied at the local node.
 void ScribePolicy.directAnycast(rice.p2p.scribe.messaging.AnycastMessage message, rice.p2p.commonapi.NodeHandle parent, rice.p2p.commonapi.NodeHandle[] children)
          This method is called when an anycast is received which is not satisfied at the local node.
 boolean ScribePolicy.DefaultScribePolicy.allowSubscribe(rice.p2p.scribe.messaging.SubscribeMessage message, rice.p2p.scribe.ScribeClient[] clients, rice.p2p.commonapi.NodeHandle[] children)
          This method always return true;
 void ScribePolicy.DefaultScribePolicy.directAnycast(rice.p2p.scribe.messaging.AnycastMessage message, rice.p2p.commonapi.NodeHandle parent, rice.p2p.commonapi.NodeHandle[] children)
          Simply adds the parent and children in order, which implements a depth-first-search.
 void ScribePolicy.DefaultScribePolicy.directAnycast(rice.p2p.scribe.messaging.AnycastMessage message, rice.p2p.commonapi.NodeHandle parent, rice.p2p.commonapi.NodeHandle[] children)
          Simply adds the parent and children in order, which implements a depth-first-search.
 boolean ScribePolicy.LimitedScribePolicy.allowSubscribe(rice.p2p.scribe.messaging.SubscribeMessage message, rice.p2p.scribe.ScribeClient[] clients, rice.p2p.commonapi.NodeHandle[] children)
          This method returns (children.length < maxChildren-1);
 

Constructors in rice.p2p.scribe with parameters of type NodeHandle
ScribeImpl.TopicManager(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Constructor for TopicManager.
 

Uses of NodeHandle in rice.p2p.scribe.messaging
 

Fields in rice.p2p.scribe.messaging declared as NodeHandle
protected  rice.p2p.commonapi.NodeHandle ScribeMessage.source
           
protected  rice.p2p.commonapi.NodeHandle SubscribeMessage.subscriber
          The original subscriber
 

Methods in rice.p2p.scribe.messaging that return NodeHandle
 rice.p2p.commonapi.NodeHandle AnycastMessage.peekNext()
          Returns the next handle to visit
 rice.p2p.commonapi.NodeHandle AnycastMessage.getNext()
          Returns the next handle to visit and removes the node from the list.
 rice.p2p.commonapi.NodeHandle ScribeMessage.getSource()
          Method which returns this messages' source address
 rice.p2p.commonapi.NodeHandle SubscribeMessage.getSubscriber()
          Returns the node who is trying to subscribe
 

Methods in rice.p2p.scribe.messaging with parameters of type NodeHandle
 void AnycastMessage.addVisited(rice.p2p.commonapi.NodeHandle handle)
          Adds a node to the visited list
 void AnycastMessage.addFirst(rice.p2p.commonapi.NodeHandle handle)
          Adds a node the the front of the to-visit list
 void AnycastMessage.addLast(rice.p2p.commonapi.NodeHandle handle)
          Adds a node the the end of the to-visit list
 void AnycastMessage.remove(rice.p2p.commonapi.NodeHandle handle)
          Removes the node handle from the to visit and visited lists
 void ScribeMessage.setSource(rice.p2p.commonapi.NodeHandle source)
          Method which set this messages' source address
 

Constructors in rice.p2p.scribe.messaging with parameters of type NodeHandle
AbstractSubscribeMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, int id)
          Constructor which takes a unique integer Id
AnycastMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, rice.p2p.scribe.ScribeContent content)
          Constructor which takes a unique integer Id
DropMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic)
          Constructor which takes a unique integer Id
PublishMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, rice.p2p.scribe.ScribeContent content)
          Constructor which takes a unique integer Id
PublishRequestMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, rice.p2p.scribe.ScribeContent content)
          Constructor which takes a unique integer Id
ScribeMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic)
          Constructor which takes a unique integer Id
SubscribeAckMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, rice.p2p.commonapi.Id[] pathToRoot, int id)
          Constructor which takes a unique integer Id
SubscribeFailedMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, int id)
          Constructor which takes a unique integer Id
SubscribeLostMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, int id)
          Constructor which takes a unique integer Id
SubscribeMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, int id, rice.p2p.scribe.ScribeContent content)
          Constructor which takes a unique integer Id
SubscribeMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic, rice.p2p.commonapi.Id previousParent, int id, rice.p2p.scribe.ScribeContent content)
          Constructor which takes a unique integer Id
UnsubscribeMessage(rice.p2p.commonapi.NodeHandle source, rice.p2p.scribe.Topic topic)
          Constructor which takes a unique integer Id
 

Uses of NodeHandle in rice.p2p.scribe.testing
 

Methods in rice.p2p.scribe.testing that return NodeHandle
 rice.p2p.commonapi.NodeHandle ScribeRegrTest.TestRouteMessage.getNextHopHandle()
          Gets the NextHopHandle attribute of the TestRouteMessage object
 

Methods in rice.p2p.scribe.testing with parameters of type NodeHandle
 void ScribeRegrTest.TestRouteMessage.setNextHopHandle(rice.p2p.commonapi.NodeHandle nextHop)
          Sets the NextHopHandle attribute of the TestRouteMessage object
 void ScribeRegrTest.TestScribeClient.childAdded(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          DESCRIBE THE METHOD
 void ScribeRegrTest.TestScribeClient.childRemoved(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          DESCRIBE THE METHOD
 boolean ScribeRegrTest.TestScribePolicy.allowSubscribe(rice.p2p.scribe.messaging.SubscribeMessage message, rice.p2p.scribe.ScribeClient[] clients, rice.p2p.commonapi.NodeHandle[] children)
           
 

Constructors in rice.p2p.scribe.testing with parameters of type NodeHandle
ScribeRegrTest.TestRouteMessage(rice.p2p.commonapi.Id id, rice.p2p.commonapi.NodeHandle nextHop, rice.p2p.commonapi.Message message)
          Constructor for TestRouteMessage.
 

Uses of NodeHandle in rice.p2p.splitstream
 

Methods in rice.p2p.splitstream that return NodeHandle
 rice.p2p.commonapi.NodeHandle SplitStreamScribePolicy.freeBandwidth(rice.p2p.splitstream.Channel channel, rice.p2p.commonapi.NodeHandle newChild, rice.p2p.commonapi.Id stripeId)
          This method attempts to free bandwidth from our primary stripe.
 rice.p2p.commonapi.NodeHandle[] Stripe.getChildren()
          Utility method.
 rice.p2p.commonapi.NodeHandle Stripe.getParent()
          Utility method.
 

Methods in rice.p2p.splitstream with parameters of type NodeHandle
 boolean SplitStreamScribePolicy.allowSubscribe(rice.p2p.scribe.messaging.SubscribeMessage message, rice.p2p.scribe.ScribeClient[] clients, rice.p2p.commonapi.NodeHandle[] children)
          This method implements the "locating parent" algorithm of SplitStream.
 void SplitStreamScribePolicy.directAnycast(rice.p2p.scribe.messaging.AnycastMessage message, rice.p2p.commonapi.NodeHandle parent, rice.p2p.commonapi.NodeHandle[] children)
          This method adds the parent and child in such a way that the nodes who have this stripe as their primary strpe are examined first.
 void SplitStreamScribePolicy.directAnycast(rice.p2p.scribe.messaging.AnycastMessage message, rice.p2p.commonapi.NodeHandle parent, rice.p2p.commonapi.NodeHandle[] children)
          This method adds the parent and child in such a way that the nodes who have this stripe as their primary strpe are examined first.
 rice.p2p.commonapi.NodeHandle SplitStreamScribePolicy.freeBandwidth(rice.p2p.splitstream.Channel channel, rice.p2p.commonapi.NodeHandle newChild, rice.p2p.commonapi.Id stripeId)
          This method attempts to free bandwidth from our primary stripe.
 void Stripe.childAdded(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Informs this client that a child was added to a topic in which it was interested in.
 void Stripe.childRemoved(rice.p2p.scribe.Topic topic, rice.p2p.commonapi.NodeHandle child)
          Informs this client that a child was removed from a topic in which it was interested in.
 

Uses of NodeHandle in rice.past
 

Methods in rice.past with parameters of type NodeHandle
 void PASTServiceImpl.update(rice.p2p.commonapi.NodeHandle handle, boolean joined)
          Deprecated. This method is invoked to inform the application that the given node has either joined or left the neighbor set of the local node, as the set would be returned by the neighborSet call.
 

Uses of NodeHandle in rice.past.testing
 

Methods in rice.past.testing that return NodeHandle
protected  rice.p2p.commonapi.NodeHandle DistPASTRegrTest.getBootstrap()
          Deprecated. Gets a handle to a bootstrap node.
 

Uses of NodeHandle in rice.pastry
 

Subclasses of NodeHandle in rice.pastry
 class NodeHandle
          Interface for handles to remote nodes.
 

Methods in rice.pastry that return NodeHandle
 rice.p2p.commonapi.NodeHandle NodeSet.getHandle(rice.p2p.commonapi.Id id)
          Finds the NodeHandle associated with the NodeId.
 rice.p2p.commonapi.NodeHandle NodeSet.getHandle(int i)
          Gets the ith element in the set.
 rice.p2p.commonapi.NodeHandle NodeSet.removeHandle(rice.p2p.commonapi.Id id)
          Removes a node id and its handle from the set.
 

Methods in rice.pastry with parameters of type NodeHandle
 boolean NodeSet.putHandle(rice.p2p.commonapi.NodeHandle handle)
          Puts a NodeHandle into the set.
 

Uses of NodeHandle in rice.pastry.commonapi
 

Methods in rice.pastry.commonapi that return NodeHandle
 rice.p2p.commonapi.NodeHandle PastryEndpoint.getLocalNodeHandle()
          Returns a handle to the local node below this endpoint.
 

Methods in rice.pastry.commonapi with parameters of type NodeHandle
 void PastryEndpoint.route(rice.p2p.commonapi.Id key, rice.p2p.commonapi.Message msg, rice.p2p.commonapi.NodeHandle hint)
          This operation forwards a message towards the root of key.
 rice.p2p.commonapi.IdRange PastryEndpoint.range(rice.p2p.commonapi.NodeHandle n, int r, rice.p2p.commonapi.Id key, boolean cumulative)
          This method provides information about ranges of keys for which the node n is currently a r-root.
 rice.p2p.commonapi.IdRange PastryEndpoint.range(rice.p2p.commonapi.NodeHandle n, int r, rice.p2p.commonapi.Id key)
          This method provides information about ranges of keys for which the node n is currently a r-root.
 

Uses of NodeHandle in rice.pastry.direct
 

Subclasses of NodeHandle in rice.pastry.direct
 class DirectNodeHandle
          the node handle used with the direct network
 

Uses of NodeHandle in rice.pastry.dist
 

Subclasses of NodeHandle in rice.pastry.dist
 class DistNodeHandle
          Abstract class for handles to "real" remote nodes.
 

Uses of NodeHandle in rice.pastry.leafset
 

Methods in rice.pastry.leafset that return NodeHandle
 rice.p2p.commonapi.NodeHandle SimilarSet.getHandle(rice.p2p.commonapi.Id id)
          Finds the NodeHandle associated with the NodeId.
 rice.p2p.commonapi.NodeHandle SimilarSet.getHandle(int i)
          Gets the ith element in the set.
 rice.p2p.commonapi.NodeHandle SimilarSet.removeHandle(rice.p2p.commonapi.Id id)
          Removes a node id and its handle from the set.
 

Methods in rice.pastry.leafset with parameters of type NodeHandle
 boolean SimilarSet.putHandle(rice.p2p.commonapi.NodeHandle handle)
          Puts a NodeHandle into the set.
 

Uses of NodeHandle in rice.pastry.rmi
 

Subclasses of NodeHandle in rice.pastry.rmi
 class RMINodeHandle
          A locally stored node handle that points to a remote RMIRemoteNodeI.
 

Uses of NodeHandle in rice.pastry.routing
 

Methods in rice.pastry.routing that return NodeHandle
 rice.p2p.commonapi.NodeHandle RouteMessage.getNextHopHandle()
           
 rice.p2p.commonapi.NodeHandle RouteSet.getHandle(rice.p2p.commonapi.Id id)
          Finds the NodeHandle associated with the NodeId.
 rice.p2p.commonapi.NodeHandle RouteSet.getHandle(int i)
          Gets the ith element in the set.
 rice.p2p.commonapi.NodeHandle RouteSet.removeHandle(rice.p2p.commonapi.Id id)
          Removes a node id and its handle from the set.
 

Methods in rice.pastry.routing with parameters of type NodeHandle
 void RouteMessage.setNextHopHandle(rice.p2p.commonapi.NodeHandle nextHop)
           
 boolean RouteSet.putHandle(rice.p2p.commonapi.NodeHandle handle)
          Puts a NodeHandle into the set.
 

Uses of NodeHandle in rice.pastry.testing
 

Subclasses of NodeHandle in rice.pastry.testing
static class LeafSetTest.TestNodeHandle
           
 

Uses of NodeHandle in rice.pastry.wire
 

Subclasses of NodeHandle in rice.pastry.wire
 class WireNodeHandle
          Class which represents a node handle in the socket-based pastry protocol.
 


Rice Pastry API

Copyright © 2001 - Rice Pastry.


Imprint-Dataprotection