Package org.xtreemfs.babudb.replication.transmission

Examples of org.xtreemfs.babudb.replication.transmission.TransmissionLayer


    public ReplicationManager(BabuDBInternal dbs, ReplicationConfig conf) throws Exception {
       
        TimeSync.initializeLocal(conf.getTimeSyncInterval(),
                                 conf.getLocalTimeRenew()).setLifeCycleListener(this);

        transmissionLayer = new TransmissionLayer(conf);
        serviceLayer = new ServiceLayer(conf, new BabuDBInterface(dbs), transmissionLayer);
        controlLayer = new ControlLayer(serviceLayer, conf);
        serviceLayer.init(controlLayer);
       
        transmissionLayer.setLifeCycleListener(this);
View Full Code Here

TOP

Related Classes of org.xtreemfs.babudb.replication.transmission.TransmissionLayer

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.