Uses of Class
gr.uoa.di.madgik.commons.infra.HostingNode

Packages that use HostingNode
gr.uoa.di.madgik.commons.infra   
gr.uoa.di.madgik.commons.infra.nodeassignmentpolicy   
gr.uoa.di.madgik.commons.infra.nodefilter   
gr.uoa.di.madgik.commons.infra.nodeselection   
gr.uoa.di.madgik.commons.infra.nodeselection.cost   
gr.uoa.di.madgik.commons.infra.nodeselection.random   
gr.uoa.di.madgik.commons.infra.nodeselection.ru   
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra
 

Methods in gr.uoa.di.madgik.commons.infra that return HostingNode
abstract  HostingNode HostingNodeAdapter.adapt(Object o)
           
 

Methods in gr.uoa.di.madgik.commons.infra that return types with arguments of type HostingNode
 List<HostingNode> HostingNodeAdapter.adaptAll(List<? extends Object> l)
           
 

Methods in gr.uoa.di.madgik.commons.infra with parameters of type HostingNode
static float HostingNodeUtils.distance(HostingNode hn1, HostingNode hn2)
           
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra.nodeassignmentpolicy
 

Methods in gr.uoa.di.madgik.commons.infra.nodeassignmentpolicy that return HostingNode
 HostingNode MaximumCollocationPolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode SingleNodePolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode NodeAssignmentPolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode LocalOnlyPolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode SingleRemoteNodePolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode MinimumCollocationPolicy.selectNode(List<HostingNode> candidates)
           
 

Methods in gr.uoa.di.madgik.commons.infra.nodeassignmentpolicy with parameters of type HostingNode
 void CollocationRegistry.addToCollocationScore(HostingNode node, float value)
           
 int CollocationRegistry.currentRound(HostingNode node)
           
 float CollocationRegistry.getCollocationScore(HostingNode node)
           
 float MaximumCollocationPolicy.getCommitFactor(HostingNode hn)
           
 float CollocationRegistry.getTotalCollocationScore(HostingNode node)
           
 boolean CollocationRegistry.isSelected(HostingNode node)
           
 void CollocationRegistry.markSelected(HostingNode node)
           
 void CollocationRegistry.newRound(HostingNode node)
           
 int CollocationRegistry.timesSelected(HostingNode node)
           
 

Method parameters in gr.uoa.di.madgik.commons.infra.nodeassignmentpolicy with type arguments of type HostingNode
 HostingNode MaximumCollocationPolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode SingleNodePolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode NodeAssignmentPolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode LocalOnlyPolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode SingleRemoteNodePolicy.selectNode(List<HostingNode> candidates)
           
 HostingNode MinimumCollocationPolicy.selectNode(List<HostingNode> candidates)
           
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra.nodefilter
 

Methods in gr.uoa.di.madgik.commons.infra.nodefilter with parameters of type HostingNode
 boolean Facet.applyStrongConstraints(HostingNode hostingNode)
           
 boolean Facet.applyWeakConstraints(HostingNode hostingNode)
           
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra.nodeselection
 

Fields in gr.uoa.di.madgik.commons.infra.nodeselection declared as HostingNode
 HostingNode HostingNodeInfo.node
           
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection that return HostingNode
 HostingNode NodeSelector.selectNode(List<HostingNode> candidates)
          Selects the most suitable node and marks the selection internally, if necessary
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection with parameters of type HostingNode
 void NodeSelector.markSelected(HostingNode node)
           
 

Method parameters in gr.uoa.di.madgik.commons.infra.nodeselection with type arguments of type HostingNode
 List<HostingNodeInfo> NodeSelector.assessNodes(List<HostingNode> candidates)
          Assesses the suitability of the candidate set of nodes without keeping internal memory of node selection.
 HostingNode NodeSelector.selectNode(List<HostingNode> candidates)
          Selects the most suitable node and marks the selection internally, if necessary
 

Constructors in gr.uoa.di.madgik.commons.infra.nodeselection with parameters of type HostingNode
HostingNodeInfo(HostingNode node, Float score)
           
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra.nodeselection.cost
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection.cost that return HostingNode
 HostingNode DistanceNodeSelector.selectNode(List<HostingNode> candidates)
           
 HostingNode BestNodeSelector.selectNode(List<HostingNode> candidates)
           
 HostingNode CostBasedNodeSelector.selectNode(List<HostingNode> candidates)
           
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection.cost with parameters of type HostingNode
 void DistanceNodeSelector.markSelected(HostingNode node)
           
 void BestNodeSelector.markSelected(HostingNode node)
           
 void CostBasedNodeSelector.markSelected(HostingNode node)
           
 

Method parameters in gr.uoa.di.madgik.commons.infra.nodeselection.cost with type arguments of type HostingNode
 List<HostingNodeInfo> DistanceNodeSelector.assessNodes(List<HostingNode> candidates)
           
 List<HostingNodeInfo> BestNodeSelector.assessNodes(List<HostingNode> candidates)
           
 List<HostingNodeInfo> CostBasedNodeSelector.assessNodes(List<HostingNode> candidates)
           
 HostingNode DistanceNodeSelector.selectNode(List<HostingNode> candidates)
           
 HostingNode BestNodeSelector.selectNode(List<HostingNode> candidates)
           
 HostingNode CostBasedNodeSelector.selectNode(List<HostingNode> candidates)
           
 

Constructor parameters in gr.uoa.di.madgik.commons.infra.nodeselection.cost with type arguments of type HostingNode
CostComparator(Map<HostingNode,Float> base)
           
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra.nodeselection.random
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection.random that return HostingNode
 HostingNode RandomNodeSelector.selectNode(List<HostingNode> candidates)
           
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection.random with parameters of type HostingNode
 void RandomNodeSelector.markSelected(HostingNode node)
           
 

Method parameters in gr.uoa.di.madgik.commons.infra.nodeselection.random with type arguments of type HostingNode
 List<HostingNodeInfo> RandomNodeSelector.assessNodes(List<HostingNode> candidates)
           
 HostingNode RandomNodeSelector.selectNode(List<HostingNode> candidates)
           
 

Uses of HostingNode in gr.uoa.di.madgik.commons.infra.nodeselection.ru
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection.ru that return HostingNode
abstract  HostingNode RUNodeSelector.getRUNode(List<HostingNode> candidates)
           
 HostingNode MRUNodeSelector.getRUNode(List<HostingNode> candidates)
           
 HostingNode LRUNodeSelector.getRUNode(List<HostingNode> candidates)
           
 HostingNode RUNodeSelector.selectNode(List<HostingNode> candidates)
           
 

Methods in gr.uoa.di.madgik.commons.infra.nodeselection.ru with parameters of type HostingNode
 void RUNodeSelector.markSelected(HostingNode node)
           
 

Method parameters in gr.uoa.di.madgik.commons.infra.nodeselection.ru with type arguments of type HostingNode
 List<HostingNodeInfo> RUNodeSelector.assessNodes(List<HostingNode> candidates)
           
abstract  HostingNode RUNodeSelector.getRUNode(List<HostingNode> candidates)
           
 HostingNode MRUNodeSelector.getRUNode(List<HostingNode> candidates)
           
 HostingNode LRUNodeSelector.getRUNode(List<HostingNode> candidates)
           
 HostingNode RUNodeSelector.selectNode(List<HostingNode> candidates)
           
 



Copyright © 2013. All Rights Reserved.