Uses of Class
org.sdnplatform.sync.internal.config.Node

Packages that use Node
org.sdnplatform.sync.internal   
org.sdnplatform.sync.internal.config   
org.sdnplatform.sync.internal.config.bootstrap   
org.sdnplatform.sync.internal.rpc   
 

Uses of Node in org.sdnplatform.sync.internal
 

Methods in org.sdnplatform.sync.internal with parameters of type Node
 void SyncManager.antientropy(Node node)
          Perform a synchronization with the node specified
 

Uses of Node in org.sdnplatform.sync.internal.config
 

Methods in org.sdnplatform.sync.internal.config that return Node
 Node ClusterConfig.getNode()
          Get the Node object for the current node
 Node ClusterConfig.getNode(short nodeId)
          The a list of the nodes in the local domain specified
 

Methods in org.sdnplatform.sync.internal.config that return types with arguments of type Node
 java.util.Collection<Node> ClusterConfig.getDomainNodes()
          A collection of the nodes in the local domain for the current node
 java.util.Collection<Node> ClusterConfig.getDomainNodes(short domainId)
          A collection of the nodes in the local domain specified
 java.util.Collection<Node> ClusterConfig.getNodes()
          Get a collection containing all configured nodes
 

Constructor parameters in org.sdnplatform.sync.internal.config with type arguments of type Node
ClusterConfig(java.util.List<Node> nodes, short thisNodeId)
          Initialize a cluster config using a list of nodes
ClusterConfig(java.util.List<Node> nodes, short thisNodeId, AuthScheme authScheme, java.lang.String keyStorePath, java.lang.String keyStorePassword)
          Initialize a cluster config using a list of nodes
ClusterConfig(java.util.List<Node> nodes, short thisNodeId, java.lang.String listenAddress, AuthScheme authScheme, java.lang.String keyStorePath, java.lang.String keyStorePassword)
          Initialize a cluster config using a list of nodes
 

Uses of Node in org.sdnplatform.sync.internal.config.bootstrap
 

Fields in org.sdnplatform.sync.internal.config.bootstrap declared as Node
protected  Node Bootstrap.localNode
           
 

Methods in org.sdnplatform.sync.internal.config.bootstrap with parameters of type Node
 boolean Bootstrap.bootstrap(com.google.common.net.HostAndPort seed, Node localNode)
           
 

Uses of Node in org.sdnplatform.sync.internal.rpc
 

Fields in org.sdnplatform.sync.internal.rpc declared as Node
protected  Node RPCService.ConnectCFListener.node
           
protected  Node RPCChannelHandler.remoteNode
           
 

Methods in org.sdnplatform.sync.internal.rpc with parameters of type Node
protected  void RPCService.doNodeConnect(Node n)
          Connect to a remote node if appropriate
 

Constructors in org.sdnplatform.sync.internal.rpc with parameters of type Node
RPCService.ConnectCFListener(Node node)