Class RandomConnectionLoadBalancingPolicy

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int select​(int max)
      Returns a pseudo random number between 0 (inclusive) and max exclusive.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RandomConnectionLoadBalancingPolicy

        public RandomConnectionLoadBalancingPolicy()
    • Method Detail

      • select

        public int select​(int max)
        Returns a pseudo random number between 0 (inclusive) and max exclusive.
        Specified by:
        select in interface ConnectionLoadBalancingPolicy
        Parameters:
        max - the upper limit of the random number selection
        See Also:
        Random.nextInt(int)