ePOST API

Uses of Class
rice.pastry.PastryNode

Packages that use PastryNode
rice.pastry   
rice.pastry.client   
rice.pastry.commonapi   
rice.pastry.direct   
rice.pastry.dist   
rice.pastry.messaging   
rice.pastry.socket   
rice.pastry.standard   
rice.pastry.testing   
rice.post.proxy   
rice.visualization.server   
 

Uses of PastryNode in rice.pastry
 

Fields in rice.pastry declared as PastryNode
protected  PastryNode NodeHandle.localnode
           
protected  PastryNode ScheduledMessage.localNode
           
protected  PastryNode PastryObjectInputStream.node
           
 

Methods in rice.pastry that return PastryNode
 PastryNode NodeHandle.getLocalNode()
          Accessor method.
 PastryNode ScheduledMessage.getLocalNode()
           
abstract  PastryNode PastryNodeFactory.newNode(NodeHandle bootstrap)
          Call this to construct a new node of the type chosen by the factory.
abstract  PastryNode PastryNodeFactory.newNode(NodeHandle bootstrap, NodeId nodeId)
          Call this to construct a new node of the type chosen by the factory, with the given nodeId.
 

Constructors in rice.pastry with parameters of type PastryNode
ExponentialBackoffScheduledMessage(PastryNode node, Message msg, Timer timer, long initialDelay, double expBase)
           
ExponentialBackoffScheduledMessage(PastryNode node, Message msg, Timer timer, long delay, long initialPeriod, double expBase)
           
PastryObjectInputStream(java.io.InputStream stream, PastryNode node)
           
ScheduledMessage(PastryNode pn, Message msg)
          Constructor
 

Uses of PastryNode in rice.pastry.client
 

Fields in rice.pastry.client declared as PastryNode
protected  PastryNode PastryAppl.thePastryNode
           
 

Constructors in rice.pastry.client with parameters of type PastryNode
CommonAPIAppl(PastryNode pn)
          Constructor.
CommonAPIAppl(PastryNode pn, java.lang.String instance)
          Constructor.
PastryAppl(PastryNode pn)
          Constructor.
PastryAppl(PastryNode pn, int port)
          Constructor.
PastryAppl(PastryNode pn, java.lang.String instance)
          Constructor.
PastryAppl(PastryNode pn, java.lang.String instance, Address address)
           
 

Uses of PastryNode in rice.pastry.commonapi
 

Constructors in rice.pastry.commonapi with parameters of type PastryNode
PastryEndpoint(PastryNode pn, Application application, int port)
          Constructor.
PastryEndpoint(PastryNode pn, Application application, java.lang.String instance)
          Constructor.
 

Uses of PastryNode in rice.pastry.direct
 

Subclasses of PastryNode in rice.pastry.direct
 class DirectPastryNode
          Direct pastry node.
 

Methods in rice.pastry.direct that return PastryNode
 PastryNode DirectPastryNodeFactory.newNode(NodeHandle bootstrap)
          Manufacture a new Pastry node.
 PastryNode DirectPastryNodeFactory.newNode(NodeHandle bootstrap, NodeId nodeId)
          Manufacture a new Pastry node.
 

Methods in rice.pastry.direct with parameters of type PastryNode
 void DirectSecurityManager.setLocalPastryNode(PastryNode local)
          Sets the local pastry node.
 

Uses of PastryNode in rice.pastry.dist
 

Subclasses of PastryNode in rice.pastry.dist
 class DistPastryNode
          Class which represents the abstraction of a "real" pastry node.
 

Methods in rice.pastry.dist that return PastryNode
abstract  PastryNode DistPastryNodeFactory.newNode(NodeHandle bootstrap)
          Generates a new pastry node with a random NodeId using the bootstrap bootstrap.
abstract  PastryNode DistPastryNodeFactory.newNode(NodeHandle bootstrap, java.net.InetSocketAddress proxy)
          Generates a new pastry node with the specified NodeId using the bootstrap bootstrap.
abstract  PastryNode DistPastryNodeFactory.newNode(NodeHandle bootstrap, NodeId nodeId)
          Generates a new pastry node with the specified NodeId using the bootstrap bootstrap.
abstract  PastryNode DistPastryNodeFactory.newNode(NodeHandle bootstrap, NodeId nodeId, java.net.InetSocketAddress proxy)
          Generates a new pastry node with the specified NodeId using the bootstrap bootstrap.
 

Uses of PastryNode in rice.pastry.messaging
 

Fields in rice.pastry.messaging declared as PastryNode
protected  PastryNode MessageDispatch.localNode
           
 

Constructors in rice.pastry.messaging with parameters of type PastryNode
MessageDispatch(PastryNode pn)
          Constructor.
 

Uses of PastryNode in rice.pastry.socket
 

Subclasses of PastryNode in rice.pastry.socket
 class SocketPastryNode
          An Socket-based Pastry node, which has two threads - one thread for performing route set and leaf set maintainance, and another thread for listening on the sockets and performing all non-blocking I/O.
 

Methods in rice.pastry.socket that return PastryNode
 PastryNode SocketPastryNodeFactory.newNode(NodeHandle bootstrap)
          Method which creates a Pastry node from the next port with a randomly generated NodeId.
 PastryNode SocketPastryNodeFactory.newNode(NodeHandle bootstrap, java.net.InetSocketAddress proxy)
          Method which creates a Pastry node from the next port with a randomly generated NodeId.
 PastryNode SocketPastryNodeFactory.newNode(NodeHandle bootstrap, NodeId nodeId)
          Method which creates a Pastry node from the next port with a randomly generated NodeId.
 PastryNode SocketPastryNodeFactory.newNode(NodeHandle bootstrap, NodeId nodeId, java.net.InetSocketAddress pAddress)
          Method which creates a Pastry node from the next port with a randomly generated NodeId.
 

Methods in rice.pastry.socket with parameters of type PastryNode
 void SocketPastrySecurityManager.setLocalPastryNode(PastryNode pn)
          Sets the local Pastry node after it is fully constructed.
 

Constructors in rice.pastry.socket with parameters of type PastryNode
SocketChannelReader(PastryNode spn, SourceRoute path)
          Constructor which creates this SocketChannelReader and the WirePastryNode.
SocketChannelWriter(PastryNode spn, SourceRoute path)
          Constructor which creates this SocketChannelWriter with a pastry node and an object to write out.
 

Uses of PastryNode in rice.pastry.standard
 

Fields in rice.pastry.standard declared as PastryNode
protected  PastryNode PeriodicLeafSetProtocol.localNode
           
protected  PastryNode StandardLeafSetProtocol.localNode
           
 

Constructors in rice.pastry.standard with parameters of type PastryNode
ConsistentJoinProtocol(PastryNode ln, NodeHandle lh, PastrySecurityManager sm, RoutingTable rt, LeafSet ls)
          Constructor takes in the usual suspects.
PartitionHandler(PastryNode pn, DistPastryNodeFactory factory, java.net.InetSocketAddress[] bootstraps)
           
PeriodicLeafSetProtocol(PastryNode ln, NodeHandle local, PastrySecurityManager sm, LeafSet ls, RoutingTable rt)
          Builds a periodic leafset protocol
StandardJoinProtocol(PastryNode ln, NodeHandle lh, PastrySecurityManager sm, RoutingTable rt, LeafSet ls)
          Constructor.
StandardLeafSetProtocol(PastryNode ln, NodeHandle local, PastrySecurityManager sm, LeafSet ls, RoutingTable rt)
           
StandardRouter(PastryNode localNode, PastrySecurityManager sm)
          Constructor.
 

Uses of PastryNode in rice.pastry.testing
 

Methods in rice.pastry.testing that return PastryNode
protected  PastryNode PastryRegrTest.generateNode(NodeHandle bootstrap)
           
 PastryNode RegrTestApp.getPastryNode()
           
 PastryNode SinglePingTest.makePastryNode()
           
 PastryNode DistHelloWorld.makePastryNode(boolean firstNode)
          Create a Pastry node and add it to pastryNodes.
 

Methods in rice.pastry.testing with parameters of type PastryNode
protected  void DirectPastryRegrTest.killNode(PastryNode pn)
          murder the node.
protected  void DistPastryRegrTest.killNode(PastryNode pn)
           
protected abstract  void PastryRegrTest.killNode(PastryNode pn)
          kill a given node.
protected  void DirectPastryRegrTest.registerapp(PastryNode pn, RegrTestApp app)
          wire protocol specific handling of the application object e.g., RMI may launch a new thread
protected  void DistPastryRegrTest.registerapp(PastryNode pn, RegrTestApp app)
          wire protocol specific handling of the application object e.g., RMI may launch a new thread
protected abstract  void PastryRegrTest.registerapp(PastryNode pn, RegrTestApp app)
          wire protocol specific handling of the application object e.g., RMI may launch a new thread
 

Constructors in rice.pastry.testing with parameters of type PastryNode
HelloWorldApp(PastryNode pn)
           
Ping(PastryNode pn)
           
PingClient(PastryNode pn)
           
RegrTestApp(PastryNode pn, PastryRegrTest prg)
           
 

Uses of PastryNode in rice.post.proxy
 

Fields in rice.post.proxy declared as PastryNode
protected  PastryNode PostProxy.globalPastryNode
          The node running in the global ring (if one exists)
protected  PastryNode PostProxy.pastryNode
          The node the services should use
 

Uses of PastryNode in rice.visualization.server
 

Fields in rice.visualization.server declared as PastryNode
protected  PastryNode VisualizationServer.node
           
 

Methods in rice.visualization.server with parameters of type PastryNode
protected  DataPanel OverviewPanelCreator.createPanel(PastryNode node)
           
protected  DataPanel PastryPanelCreator.createPanel(PastryNode node)
           
protected  DataPanel GCPanelCreator.createPanel(PastryNode node, GCPastImpl past, StorageManager manager)
           
 

Constructors in rice.visualization.server with parameters of type PastryNode
VisualizationServer(java.net.InetSocketAddress address, PastryNode node, StorageManager storage, RingCertificate cert, java.lang.Object[] objects, Environment env)
           
 


ePOST API

Copyright © 2001-2005 - Rice Pastry.