Package net.csdn.bootstrap.loader.impl

Source Code of net.csdn.bootstrap.loader.impl.ThriftLoader

package net.csdn.bootstrap.loader.impl;

import net.csdn.ServiceFramwork;
import net.csdn.bootstrap.loader.Loader;
import net.csdn.common.settings.Settings;
import net.csdn.modules.thrift.ThriftModule;

/**
* 6/4/13 WilliamZhu(allwefantasy@gmail.com)
*/
public class ThriftLoader implements Loader {

    @Override
    public void load(Settings settings) throws Exception {
        ServiceFramwork.AllModules.add(new ThriftModule());
    }
}
TOP

Related Classes of net.csdn.bootstrap.loader.impl.ThriftLoader

TOP
Copyright © 2018 www.massapi.com. 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.