Package com.alipay.bluewhale.core.utils

Examples of com.alipay.bluewhale.core.utils.RandomRange


    } else if (GroupingConstants.all.equals(fields)) {
      // ÿ��task������
      grouperType = GrouperType.all;
    } else if (GroupingConstants.shuffle.equals(fields)) {
      // ������䣬��none��ʵ�ַ�ʽ��ͬ���ǣ�����ıȽϾ���
      this.randomrange = new RandomRange(num_tasks);
      grouperType = GrouperType.shuffle;
    } else if (GroupingConstants.none.equals(fields)) {
      // ͨ������������ķ�ʽ����ȫ���
      this.random = new Random();
      grouperType = GrouperType.none;
View Full Code Here

TOP

Related Classes of com.alipay.bluewhale.core.utils.RandomRange

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.