GridGain™ 2.1.0
Java API Specification

Uses of Interface
org.gridgain.grid.GridNode

Packages that use GridNode
org.gridgain.grid icon Start Here  Contains main GridGain API interfaces and classes. 
org.gridgain.grid.spi icon Contains common classes and interfaces for SPI implementations. 
org.gridgain.grid.spi.communication icon Contains APIs for grid communication SPI. 
org.gridgain.grid.spi.communication.coherence icon Contains Tangosol Coherence implementation for communication SPI. 
org.gridgain.grid.spi.communication.jgroups icon Contains JGroups-based implementation for communication SPI. 
org.gridgain.grid.spi.communication.jms icon Contains JMS-based implementation for communication SPI. 
org.gridgain.grid.spi.communication.mail icon Contains IMAP/POP3-based implementation for communication SPI. 
org.gridgain.grid.spi.communication.mule icon Contains Mule-based implementation for communication SPI. 
org.gridgain.grid.spi.communication.mule2 icon Contains Mule 2.0 based implementation for communication SPI. 
org.gridgain.grid.spi.communication.tcp icon Contains default TCP/IP-based implementation for communication SPI. 
org.gridgain.grid.spi.discovery icon Contains APIs for topology manager SPI. 
org.gridgain.grid.spi.discovery.coherence icon Contains Oracle Coherence implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.jboss icon Contains JBoss implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.jgroups icon Contains JGroups implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.jms icon Contains JMS implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.mail icon Contains IMAP/POP3 implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.mule icon Contains Mule implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.mule2 icon Contains Mule 2.0 implementation for discovery SPI. 
org.gridgain.grid.spi.discovery.multicast icon Contains default IP-multicast implementation for discovery SPI. 
org.gridgain.grid.spi.failover icon Contains APIs for failover SPI. 
org.gridgain.grid.spi.failover.always icon Contains default "always" failover SPI. 
org.gridgain.grid.spi.failover.jobstealing icon Contains "job-stealing" failover SPI. 
org.gridgain.grid.spi.failover.never icon Contains "never" failover SPI. 
org.gridgain.grid.spi.loadbalancing icon Contains APIs for load balancing SPI. 
org.gridgain.grid.spi.loadbalancing.adaptive icon Contains adaptive load balancing SPI. 
org.gridgain.grid.spi.loadbalancing.affinity icon Contains affinity-based load balancing SPI. 
org.gridgain.grid.spi.loadbalancing.coherence icon Contains Coherence-based affinity load balancing SPI. 
org.gridgain.grid.spi.loadbalancing.roundrobin icon Contains default round-robin implementation for load balancing SPI. 
org.gridgain.grid.spi.loadbalancing.weightedrandom icon Contains weighted random-base implementation for load balancing SPI. 
org.gridgain.grid.spi.topology icon Contains APIs for topology SPI. 
org.gridgain.grid.spi.topology.attributes icon Contains attributes based topology SPI implementation. 
org.gridgain.grid.spi.topology.basic icon Contains default basic topology SPI implementation. 
org.gridgain.grid.spi.topology.nodefilter icon Contains topology SPI implementation based on filtering node metrics. 
org.gridgain.grid.test icon Contains common classes for JUnit integration. 
 

Uses of GridNode in org.gridgain.grid
 

Methods in org.gridgain.grid that return GridNode
 GridNode GridLoadBalancer.getBalancedNode(GridJob job, GridNode... excludeNodes)
          Gets the next balanced node according to the underlying load balancing policy.
 GridNode GridSpringBean.getLocalNode()
          Gets local grid node.
 GridNode Grid.getLocalNode()
          Gets local grid node.
 GridNode GridJobResult.getNode()
          Gets node this job executed on.
 GridNode GridSpringBean.getNode(UUID nodeId)
          Gets a node instance based on its ID.
 GridNode Grid.getNode(UUID nodeId)
          Gets a node instance based on its ID.
 

Methods in org.gridgain.grid that return types with arguments of type GridNode
 Collection<GridNode> GridSpringBean.getAllNodes()
          Gets a collection of all grid nodes.
 Collection<GridNode> Grid.getAllNodes()
          Gets a collection of all grid nodes.
 Collection<GridNode> GridSpringBean.getNodes(GridNodeFilter filter)
          Gets all grid nodes accepted by the filter.
 Collection<GridNode> Grid.getNodes(GridNodeFilter filter)
          Gets all grid nodes accepted by the filter.
 Collection<GridNode> GridSpringBean.getRemoteNodes()
          Gets a collection of remote grid nodes.
 Collection<GridNode> Grid.getRemoteNodes()
          Gets a collection of remote grid nodes.
 Map<? extends GridJob,GridNode> GridTaskSplitAdapter.map(List<GridNode> subgrid, T arg)
          This method is called to map or split grid task into multiple grid jobs.
 Map<? extends GridJob,GridNode> GridTask.map(List<GridNode> subgrid, T arg)
          This method is called to map or split grid task into multiple grid jobs.
 

Methods in org.gridgain.grid with parameters of type GridNode
 boolean GridNodeFilter.accept(GridNode node)
          Tests if a specified grid node should be accepted.
 boolean GridJexlNodeFilter.accept(GridNode node)
          Tests if a specified grid node should be accepted.
 GridNode GridLoadBalancer.getBalancedNode(GridJob job, GridNode... excludeNodes)
          Gets the next balanced node according to the underlying load balancing policy.
 void GridDiscoveryListener.onDiscovery(GridDiscoveryEventType type, GridNode node)
          Notification for grid node discovery events.
 void GridSpringBean.sendMessage(GridNode node, Serializable msg)
          Sends a message to a remote node.
 void Grid.sendMessage(GridNode node, Serializable msg)
          Sends a message to a remote node.
 

Method parameters in org.gridgain.grid with type arguments of type GridNode
 long GridSpringBean.getTopologyHash(Collection<GridNode> nodes)
          This method calculates hash value of the given set of nodes (a topology).
 long Grid.getTopologyHash(Collection<GridNode> nodes)
          This method calculates hash value of the given set of nodes (a topology).
 Map<? extends GridJob,GridNode> GridTaskSplitAdapter.map(List<GridNode> subgrid, T arg)
          This method is called to map or split grid task into multiple grid jobs.
 Map<? extends GridJob,GridNode> GridTask.map(List<GridNode> subgrid, T arg)
          This method is called to map or split grid task into multiple grid jobs.
 List<GridEvent> GridSpringBean.queryEvents(GridEventFilter filter, Collection<GridNode> nodes, long timeout)
          Queries all remote nodes for events using passed in filter for event selection.
 List<GridEvent> Grid.queryEvents(GridEventFilter filter, Collection<GridNode> nodes, long timeout)
          Queries all remote nodes for events using passed in filter for event selection.
 void GridSpringBean.sendMessage(Collection<GridNode> nodes, Serializable msg)
          Sends a message to a group of remote nodes.
 void Grid.sendMessage(Collection<GridNode> nodes, Serializable msg)
          Sends a message to a group of remote nodes.
 

Uses of GridNode in org.gridgain.grid.spi
 

Methods in org.gridgain.grid.spi that return GridNode
 GridNode GridSpiContext.getLocalNode()
          Gets local grid node.
 GridNode GridSpiContext.getNode(UUID nodeId)
          Gets a node instance based on its ID.
 

Methods in org.gridgain.grid.spi that return types with arguments of type GridNode
 Collection<GridNode> GridSpiContext.getAllNodes()
          Gets a collection of all grid nodes.
 Collection<GridNode> GridSpiContext.getRemoteNodes()
          Gets a collection of remote grid nodes.
 Collection<GridNode> GridSpiContext.getTopology(GridTaskSession taskSes, Collection<GridNode> grid)
          Obtain grid node topology for a given task.
 

Methods in org.gridgain.grid.spi with parameters of type GridNode
 void GridSpiContext.sendMessage(GridNode node, Serializable msg, String topic)
          Sends a message to a remote node.
 

Method parameters in org.gridgain.grid.spi with type arguments of type GridNode
 Collection<GridNode> GridSpiContext.getTopology(GridTaskSession taskSes, Collection<GridNode> grid)
          Obtain grid node topology for a given task.
 void GridSpiContext.sendMessage(Collection<GridNode> nodes, Serializable msg, String topic)
          Sends a message to a group of remote nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication
 

Methods in org.gridgain.grid.spi.communication with parameters of type GridNode
 void GridCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication with type arguments of type GridNode
 void GridCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.coherence
 

Methods in org.gridgain.grid.spi.communication.coherence with parameters of type GridNode
 void GridCoherenceCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.coherence with type arguments of type GridNode
 void GridCoherenceCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.jgroups
 

Methods in org.gridgain.grid.spi.communication.jgroups with parameters of type GridNode
 void GridJgroupsCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.jgroups with type arguments of type GridNode
 void GridJgroupsCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.jms
 

Methods in org.gridgain.grid.spi.communication.jms with parameters of type GridNode
 void GridJmsCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.jms with type arguments of type GridNode
 void GridJmsCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.mail
 

Methods in org.gridgain.grid.spi.communication.mail with parameters of type GridNode
 void GridMailCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.mail with type arguments of type GridNode
 void GridMailCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.mule
 

Methods in org.gridgain.grid.spi.communication.mule with parameters of type GridNode
 void GridMuleCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.mule with type arguments of type GridNode
 void GridMuleCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.mule2
 

Methods in org.gridgain.grid.spi.communication.mule2 with parameters of type GridNode
 void GridMuleCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.mule2 with type arguments of type GridNode
 void GridMuleCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.communication.tcp
 

Methods in org.gridgain.grid.spi.communication.tcp with parameters of type GridNode
 void GridTcpCommunicationSpi.sendMessage(GridNode destNode, Serializable msg)
          Sends given message to destination node.
 

Method parameters in org.gridgain.grid.spi.communication.tcp with type arguments of type GridNode
 void GridTcpCommunicationSpi.sendMessage(Collection<GridNode> destNodes, Serializable msg)
          Sends given message to destination nodes.
 

Uses of GridNode in org.gridgain.grid.spi.discovery
 

Methods in org.gridgain.grid.spi.discovery that return GridNode
 GridNode GridDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery that return types with arguments of type GridNode
 Collection<GridNode> GridDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.coherence
 

Methods in org.gridgain.grid.spi.discovery.coherence that return GridNode
 GridNode GridCoherenceDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridCoherenceDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.coherence that return types with arguments of type GridNode
 List<GridNode> GridCoherenceDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.jboss
 

Methods in org.gridgain.grid.spi.discovery.jboss that return GridNode
 GridNode GridJbossDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridJbossDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.jboss that return types with arguments of type GridNode
 List<GridNode> GridJbossDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.jgroups
 

Methods in org.gridgain.grid.spi.discovery.jgroups that return GridNode
 GridNode GridJgroupsDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridJgroupsDiscoverySpi.getNode(UUID nodeId)
          Make node search by node id in collection of discovered nodes.
 

Methods in org.gridgain.grid.spi.discovery.jgroups that return types with arguments of type GridNode
 List<GridNode> GridJgroupsDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.jms
 

Methods in org.gridgain.grid.spi.discovery.jms that return GridNode
 GridNode GridJmsDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridJmsDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.jms that return types with arguments of type GridNode
 List<GridNode> GridJmsDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.mail
 

Methods in org.gridgain.grid.spi.discovery.mail that return GridNode
 GridNode GridMailDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridMailDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.mail that return types with arguments of type GridNode
 List<GridNode> GridMailDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.mule
 

Methods in org.gridgain.grid.spi.discovery.mule that return GridNode
 GridNode GridMuleDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridMuleDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.mule that return types with arguments of type GridNode
 List<GridNode> GridMuleDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.mule2
 

Methods in org.gridgain.grid.spi.discovery.mule2 that return GridNode
 GridNode GridMuleDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridMuleDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.mule2 that return types with arguments of type GridNode
 List<GridNode> GridMuleDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.discovery.multicast
 

Methods in org.gridgain.grid.spi.discovery.multicast that return GridNode
 GridNode GridMulticastDiscoverySpi.getLocalNode()
          Gets local node.
 GridNode GridMulticastDiscoverySpi.getNode(UUID nodeId)
          Gets node by ID.
 

Methods in org.gridgain.grid.spi.discovery.multicast that return types with arguments of type GridNode
 List<GridNode> GridMulticastDiscoverySpi.getRemoteNodes()
          Gets collection of remote nodes in grid or empty collection if no remote nodes found.
 

Uses of GridNode in org.gridgain.grid.spi.failover
 

Methods in org.gridgain.grid.spi.failover that return GridNode
 GridNode GridFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 GridNode GridFailoverContext.getBalancedNode(List<GridNode> top)
          Gets the next balanced node for failed job.
 

Method parameters in org.gridgain.grid.spi.failover with type arguments of type GridNode
 GridNode GridFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 GridNode GridFailoverContext.getBalancedNode(List<GridNode> top)
          Gets the next balanced node for failed job.
 

Uses of GridNode in org.gridgain.grid.spi.failover.always
 

Methods in org.gridgain.grid.spi.failover.always that return GridNode
 GridNode GridAlwaysFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 

Method parameters in org.gridgain.grid.spi.failover.always with type arguments of type GridNode
 GridNode GridAlwaysFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 

Uses of GridNode in org.gridgain.grid.spi.failover.jobstealing
 

Methods in org.gridgain.grid.spi.failover.jobstealing that return GridNode
 GridNode GridJobStealingFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 

Method parameters in org.gridgain.grid.spi.failover.jobstealing with type arguments of type GridNode
 GridNode GridJobStealingFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 

Uses of GridNode in org.gridgain.grid.spi.failover.never
 

Methods in org.gridgain.grid.spi.failover.never that return GridNode
 GridNode GridNeverFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 

Method parameters in org.gridgain.grid.spi.failover.never with type arguments of type GridNode
 GridNode GridNeverFailoverSpi.failover(GridFailoverContext ctx, List<GridNode> top)
          This method is called when method GridTask.result(GridJobResult, List) returns value GridJobResultPolicy.FAILOVER policy indicating that the result of job execution must be failed over.
 

Uses of GridNode in org.gridgain.grid.spi.loadbalancing
 

Methods in org.gridgain.grid.spi.loadbalancing that return GridNode
 GridNode GridLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Method parameters in org.gridgain.grid.spi.loadbalancing with type arguments of type GridNode
 GridNode GridLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Uses of GridNode in org.gridgain.grid.spi.loadbalancing.adaptive
 

Methods in org.gridgain.grid.spi.loadbalancing.adaptive that return GridNode
 GridNode GridAdaptiveLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Methods in org.gridgain.grid.spi.loadbalancing.adaptive with parameters of type GridNode
 double GridAdaptiveLoadProbe.getLoad(GridNode node, int jobsSentSinceLastUpdate)
          Calculates load value for a given node.
 double GridAdaptiveJobCountLoadProbe.getLoad(GridNode node, int jobsSentSinceLastUpdate)
          Calculates load value for a given node.
 double GridAdaptiveBenchmarkLoadProbe.getLoad(GridNode node, int jobsSentSinceLastUpdate)
          Calculates load value for a given node.
 double GridAdaptiveCpuLoadProbe.getLoad(GridNode node, int jobsSentSinceLastUpdate)
          Calculates load value for a given node.
 double GridAdaptiveProcessingTimeLoadProbe.getLoad(GridNode node, int jobsSentSinceLastUpdate)
          Calculates load value for a given node.
 

Method parameters in org.gridgain.grid.spi.loadbalancing.adaptive with type arguments of type GridNode
 GridNode GridAdaptiveLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Uses of GridNode in org.gridgain.grid.spi.loadbalancing.affinity
 

Methods in org.gridgain.grid.spi.loadbalancing.affinity that return GridNode
 GridNode GridAffinityLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Method parameters in org.gridgain.grid.spi.loadbalancing.affinity with type arguments of type GridNode
 GridNode GridAffinityLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Uses of GridNode in org.gridgain.grid.spi.loadbalancing.coherence
 

Methods in org.gridgain.grid.spi.loadbalancing.coherence that return GridNode
 GridNode GridCoherenceLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Method parameters in org.gridgain.grid.spi.loadbalancing.coherence with type arguments of type GridNode
 GridNode GridCoherenceLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Uses of GridNode in org.gridgain.grid.spi.loadbalancing.roundrobin
 

Methods in org.gridgain.grid.spi.loadbalancing.roundrobin that return GridNode
 GridNode GridRoundRobinLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Method parameters in org.gridgain.grid.spi.loadbalancing.roundrobin with type arguments of type GridNode
 GridNode GridRoundRobinLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Uses of GridNode in org.gridgain.grid.spi.loadbalancing.weightedrandom
 

Methods in org.gridgain.grid.spi.loadbalancing.weightedrandom that return GridNode
 GridNode GridWeightedRandomLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Method parameters in org.gridgain.grid.spi.loadbalancing.weightedrandom with type arguments of type GridNode
 GridNode GridWeightedRandomLoadBalancingSpi.getBalancedNode(GridTaskSession ses, List<GridNode> top, GridJob job)
          Gets balanced node for specified job within given task session.
 

Uses of GridNode in org.gridgain.grid.spi.topology
 

Methods in org.gridgain.grid.spi.topology that return types with arguments of type GridNode
 Collection<GridNode> GridTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Method parameters in org.gridgain.grid.spi.topology with type arguments of type GridNode
 Collection<GridNode> GridTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Uses of GridNode in org.gridgain.grid.spi.topology.attributes
 

Methods in org.gridgain.grid.spi.topology.attributes that return types with arguments of type GridNode
 Collection<GridNode> GridAttributesTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Method parameters in org.gridgain.grid.spi.topology.attributes with type arguments of type GridNode
 Collection<GridNode> GridAttributesTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Uses of GridNode in org.gridgain.grid.spi.topology.basic
 

Methods in org.gridgain.grid.spi.topology.basic that return types with arguments of type GridNode
 Collection<GridNode> GridBasicTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Method parameters in org.gridgain.grid.spi.topology.basic with type arguments of type GridNode
 Collection<GridNode> GridBasicTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Uses of GridNode in org.gridgain.grid.spi.topology.nodefilter
 

Methods in org.gridgain.grid.spi.topology.nodefilter that return types with arguments of type GridNode
 Collection<GridNode> GridNodeFilterTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Method parameters in org.gridgain.grid.spi.topology.nodefilter with type arguments of type GridNode
 Collection<GridNode> GridNodeFilterTopologySpi.getTopology(GridTaskSession ses, Collection<GridNode> grid)
          This method is called by GridGain right before calling GridTask.map(List, Object) to obtain a topology for the task's split.
 

Uses of GridNode in org.gridgain.grid.test
 

Methods in org.gridgain.grid.test that return GridNode
 GridNode GridTestRouterAdapter.route(Class<?> test, String name, List<GridNode> subgrid, UUID locNodeId)
          Routes a test to a specific node.
 GridNode GridTestRouter.route(Class<?> test, String name, List<GridNode> subgrid, UUID locNodeId)
          Routes a test to a specific node.
 

Method parameters in org.gridgain.grid.test with type arguments of type GridNode
 GridNode GridTestRouterAdapter.route(Class<?> test, String name, List<GridNode> subgrid, UUID locNodeId)
          Routes a test to a specific node.
 GridNode GridTestRouter.route(Class<?> test, String name, List<GridNode> subgrid, UUID locNodeId)
          Routes a test to a specific node.
 


GridGain™ 2.1.0
Java API Specification

GridGain™ - Grid Computing Made Simple, ver. 2.1.0.19122008
2005-2008 Copyright © GridGain Systems. All Rights Reserved.