Implement LeastLoadedCandidateSelectionStrategy
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / selectionstrategy / EntityOwnerSelectionStrategy.java
index e86c3a11513a6b2a83974b330bcd6baef8c96bcd..53b35f65c404c81aabce94fcd0b83406c8258ee3 100644 (file)
@@ -9,6 +9,7 @@
 package org.opendaylight.controller.cluster.datastore.entityownership.selectionstrategy;
 
 import java.util.Collection;
+import java.util.Map;
 
 /**
  * An EntityOwnerSelectionStrategy is to be used by the EntityOwnershipShard to select a new owner from a collection
@@ -25,7 +26,9 @@ public interface EntityOwnerSelectionStrategy {
     /**
      *
      * @param viableCandidates the available candidates from which to choose the new owner
+     * @param statistics contains a snapshot of a mapping between candidate names and the number of entities
+     *                   owned by that candidate
      * @return the new owner
      */
-    String newOwner(Collection<String> viableCandidates);
+    String newOwner(Collection<String> viableCandidates, Map<String, Long> statistics);
 }