Package com.sleepycat.je.sync

Examples of com.sleepycat.je.sync.SyncDataSet


     * Get database ID and name information for sync'ed databases in this
     * SyncDataSet.
     */
    private void getSyncDbs(Environment env) {
        /* Get the DatabaseId for all synced databases. */
        SyncDataSet dataSet = processor.getDataSets().get(dataSetName);
        Iterator<SyncDatabase> databases = dataSet.getDatabases().iterator();

        while (databases.hasNext()) {
            Locker readLocker = null;
            boolean operationOK = false;
            DatabaseImpl dbImpl = null;
View Full Code Here

TOP

Related Classes of com.sleepycat.je.sync.SyncDataSet

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.