Uses of Class
org.apache.geronimo.messaging.NodeInfo

Packages that use NodeInfo
org.apache.geronimo.messaging   
org.apache.geronimo.messaging.cluster   
org.apache.geronimo.messaging.cluster.topology   
org.apache.geronimo.messaging.io   
org.apache.geronimo.messaging.proxy   
org.apache.geronimo.messaging.reference   
org.apache.geronimo.messaging.remotenode   
org.apache.geronimo.messaging.remotenode.network   
org.apache.geronimo.messaging.replication   
 

Uses of NodeInfo in org.apache.geronimo.messaging
 

Methods in org.apache.geronimo.messaging that return NodeInfo
 NodeInfo Node.getNodeInfo()
          Gets the NodeInfo of this node.
 NodeInfo[] NodeTopology.getPath(NodeInfo aSource, NodeInfo aTarget)
          Gets a path between aSource and aTarget.
 NodeInfo NodeTopology.getNodeById(int anId)
          Gets the NodeInfo having the specified identifier.
static NodeInfo[] NodeInfo.pop(NodeInfo[] aNodeInfo)
          Pops the first element of the array and returns the resulting array.
 NodeInfo NodeImpl.getNodeInfo()
           
 

Methods in org.apache.geronimo.messaging with parameters of type NodeInfo
 Set NodeTopology.getNeighbours(NodeInfo aRoot)
          Gets the neighbours of the specified node.
 NodeInfo[] NodeTopology.getPath(NodeInfo aSource, NodeInfo aTarget)
          Gets a path between aSource and aTarget.
 int NodeTopology.getIDOfNode(NodeInfo aNodeInfo)
          Gets the identifier of the provided node in the specified topology.
static NodeInfo[] NodeInfo.pop(NodeInfo[] aNodeInfo)
          Pops the first element of the array and returns the resulting array.
 Object RequestSender.sendSyncRequest(Object anOpaque, MsgOutInterceptor anOut, Object aTargetID, NodeInfo aTargetNode)
          Sends a synchronous request Msg to the specified node.
 Object RequestSender.sendSyncRequest(Object anOpaque, MsgOutInterceptor anOut, Object aTargetID, NodeInfo[] aTargetNodes)
          Sends a synchronous request Msg to the specified nodes.
 

Constructors in org.apache.geronimo.messaging with parameters of type NodeInfo
NodeImpl(NodeInfo aNodeInfo, org.apache.geronimo.pool.ThreadPool aThreadPool, org.apache.geronimo.pool.ClockPool aClockPool, MessagingTransportFactory aFactory)
          Creates a Node.
 

Uses of NodeInfo in org.apache.geronimo.messaging.cluster
 

Methods in org.apache.geronimo.messaging.cluster that return NodeInfo
 NodeInfo ClusterEvent.getMember()
           
 

Methods in org.apache.geronimo.messaging.cluster with parameters of type NodeInfo
 void Cluster.addMember(NodeInfo aNode)
          Adds a Node to this cluster.
 void Cluster.removeMember(NodeInfo aNode)
          Removes a Node from this cluster.
 void ClusterImpl.addMember(NodeInfo aNode)
           
 void ClusterImpl.removeMember(NodeInfo aNode)
           
 

Constructors in org.apache.geronimo.messaging.cluster with parameters of type NodeInfo
ClusterEvent(Cluster aCluster, NodeInfo aMember, Object aType)
           
 

Uses of NodeInfo in org.apache.geronimo.messaging.cluster.topology
 

Methods in org.apache.geronimo.messaging.cluster.topology with parameters of type NodeInfo
 void TopologyManager.addNode(NodeInfo aNode)
          Adds a node.
 void TopologyManager.removeNode(NodeInfo aNode)
          Removes a node.
 void RingTopologyManager.addNode(NodeInfo aNode)
           
 void RingTopologyManager.removeNode(NodeInfo aNode)
           
 

Uses of NodeInfo in org.apache.geronimo.messaging.io
 

Fields in org.apache.geronimo.messaging.io declared as NodeInfo
protected  NodeInfo StreamManagerImpl.owningNode
          Node owning this manager.
 

Uses of NodeInfo in org.apache.geronimo.messaging.proxy
 

Methods in org.apache.geronimo.messaging.proxy that return NodeInfo
 NodeInfo[] EndPointCallback.getTargets()
          Gets the Nodes hosting the target EndPoint.
 NodeInfo[] EndPointProxyInfo.getTargets()
          Gets the Nodes hosting the EndPoint.
 

Methods in org.apache.geronimo.messaging.proxy with parameters of type NodeInfo
 void EndPointCallback.setTargets(NodeInfo[] aTargets)
          Sets the Nodes hosting the target EndPoints.
 

Constructors in org.apache.geronimo.messaging.proxy with parameters of type NodeInfo
EndPointProxyInfo(Object anEndPointID, Class anInterface, NodeInfo aTarget)
          Convenience constructor
EndPointProxyInfo(Object anEndPointID, Class[] anInterfaces, NodeInfo[] aTargets)
          Creates the meta-data of an EndPoint proxy.
 

Uses of NodeInfo in org.apache.geronimo.messaging.reference
 

Methods in org.apache.geronimo.messaging.reference that return NodeInfo
 NodeInfo ReferenceableInfo.getHostingNode()
          Gets the hosting node.
 

Constructors in org.apache.geronimo.messaging.reference with parameters of type NodeInfo
ReferenceableInfo(NodeInfo anHostingNode, Object anID, Class[] aClazz, int aRefId)
          Creates the meta-data of a Referenceable.
 

Uses of NodeInfo in org.apache.geronimo.messaging.remotenode
 

Fields in org.apache.geronimo.messaging.remotenode declared as NodeInfo
protected  NodeInfo AbstractRemoteNode.localNodeInfo
          Local node meta-data.
protected  NodeInfo AbstractRemoteNode.remoteNodeInfo
          Remote node meta-data.
 

Methods in org.apache.geronimo.messaging.remotenode that return NodeInfo
 NodeInfo AbstractRemoteNode.getNodeInfo()
           
 NodeInfo RemoteNode.getNodeInfo()
          Gets the NodeInfo of this remote node.
 

Methods in org.apache.geronimo.messaging.remotenode with parameters of type NodeInfo
 void RemoteNodeManager.leaveRemoteNode(NodeInfo aNodeInfo)
          Leaves a remote node.
 RemoteNode RemoteNodeManager.findOrJoinRemoteNode(NodeInfo aNodeInfo)
          Finds or joins a remote node.
 RemoteNode RemoteNodeManager.findRemoteNode(NodeInfo aNodeInfo)
          Finds a remote node.
 NodeServer MessagingTransportFactory.factoryServer(NodeInfo aNodeInfo, IOContext anIOContext)
          Creates a NodeServer for the specified node.
 RemoteNode MessagingTransportFactory.factoryRemoteNode(NodeInfo aLocalNodeInfo, NodeInfo aRemoteNodeInfo, IOContext anIOContext)
          Creates a RemoteNode providing a local view of the remote node aNodeInfo.
 void RemoteNodeManagerImpl.leaveRemoteNode(NodeInfo aNodeInfo)
           
 RemoteNode RemoteNodeManagerImpl.findOrJoinRemoteNode(NodeInfo aNodeInfo)
           
 RemoteNode RemoteNodeManagerImpl.findRemoteNode(NodeInfo aNodeInfo)
           
 

Constructors in org.apache.geronimo.messaging.remotenode with parameters of type NodeInfo
AbstractRemoteNode(NodeInfo aLocalNode, IOContext anIOContext)
           
AbstractRemoteNode(NodeInfo aLocalNodeInfo, NodeInfo aRemoteNodeInfo, IOContext anIOContext)
           
RemoteNodeManagerImpl(NodeInfo aNodeInfo, IOContext anIOContext, org.apache.geronimo.pool.ClockPool aClockPool, MessagingTransportFactory aFactory)
           
 

Uses of NodeInfo in org.apache.geronimo.messaging.remotenode.network
 

Methods in org.apache.geronimo.messaging.remotenode.network with parameters of type NodeInfo
 NodeServer NetworkTransportFactory.factoryServer(NodeInfo aNodeInfo, IOContext anIOContext)
           
 RemoteNode NetworkTransportFactory.factoryRemoteNode(NodeInfo aLocalNodeInfo, NodeInfo aRemoteNodeInfo, IOContext anIOContext)
           
 

Constructors in org.apache.geronimo.messaging.remotenode.network with parameters of type NodeInfo
NodeServerImpl(NodeInfo aNodeInfo, IOContext anIOContext, org.apache.geronimo.network.SelectorManager aSelectorManager, org.apache.geronimo.pool.ClockPool aClockPool)
           
RemoteNodeJoinerConnection(NodeInfo aNodeInfo, IOContext anIOContext, org.apache.geronimo.network.SelectorManager aSelectorManager)
           
RemoteNodeJoiner(NodeInfo aLocalNodeInfo, NodeInfo aRemoteNodeInfo, IOContext anIOContext, org.apache.geronimo.network.SelectorManager aSelectorManager)
           
RemoteNodeJoined(NodeInfo aLocalNode, IOContext anIOContext, org.apache.geronimo.network.protocol.Protocol aProtocol)
           
 

Uses of NodeInfo in org.apache.geronimo.messaging.replication
 

Constructors in org.apache.geronimo.messaging.replication with parameters of type NodeInfo
ReplicationMemberImpl(Node aNode, Object anID, NodeInfo[] aTargetNodes)
          Creates a replication group member.
 



Copyright © 2003-2005 Apache Software Foundation. All Rights Reserved.