Package org.apache.stratos.throttling.manager.conf

Examples of org.apache.stratos.throttling.manager.conf.ThrottlingTaskDataProviderConfiguration


        return (i < dataProviderConfigs.size());
    }

    public Object next() {
        int i = index.get();
        ThrottlingTaskDataProviderConfiguration handlerConfig = dataProviderConfigs.get(i++);
        index.set(i);
        try {
            return handlerConfig.getDataProvider();
        } catch (ThrottlingException e) {
            String msg = "DataProvider for the dataProviderConfigs config is null. " +
                "dataProviderConfigs index: " + (i - 1) + ".";
            log.error(msg);                       
        }
View Full Code Here

TOP

Related Classes of org.apache.stratos.throttling.manager.conf.ThrottlingTaskDataProviderConfiguration

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.