Package net.csdn.modules.threadpool

Examples of net.csdn.modules.threadpool.ThreadPoolModule


public class ModuelLoader implements Loader {
    @Override
    public void load(final Settings settings) {
        final List<Module> moduleList = new ArrayList<Module>();
        moduleList.add(new SettingsModule(settings));
        moduleList.add(new ThreadPoolModule());
        moduleList.add(new TransportModule());
        moduleList.add(new HttpModule());
        moduleList.add(new ScanModule());
        moduleList.add(new SystemLoggerModule());
        moduleList.add(new ControllerModule());
View Full Code Here

TOP

Related Classes of net.csdn.modules.threadpool.ThreadPoolModule

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.