Package org.xtreemfs.babudb.replication.service.logic

Examples of org.xtreemfs.babudb.replication.service.logic.BasicLogic


        // initialize logic
        // ---------------------
        logics = new HashMap<LogicID, Logic>();
       
       
        Logic lg = new BasicLogic(this, pacemaker, slaveView, fileIO);
        logics.put(lg.getId(), lg);
       
        lg = new RequestLogic(this, pacemaker, slaveView, fileIO);
        logics.put(lg.getId(), lg);
       
        lg = new LoadLogic(this, pacemaker, slaveView, fileIO, maxChunkSize);
        logics.put(lg.getId(), lg);
    }
View Full Code Here

TOP

Related Classes of org.xtreemfs.babudb.replication.service.logic.BasicLogic

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.