Package org.apache.bookkeeper.metastore.InMemoryMetastoreTable

Examples of org.apache.bookkeeper.metastore.InMemoryMetastoreTable.MetadataVersion


    protected Configuration getConfiguration() {
        return new CompositeConfiguration();
    }

    protected Version newBadVersion() {
        return new MetadataVersion(-1);
    }
View Full Code Here


        return new MetadataVersion(-1);
    }

    protected Version nextVersion(Version version) {
        if (Version.NEW == version) {
            return new MetadataVersion(0);
        }
        if (Version.ANY == version) {
            return Version.ANY;
        }
        assertTrue(version instanceof MetadataVersion);
        return new MetadataVersion(((MetadataVersion) version).incrementVersion());
    }
View Full Code Here

TOP

Related Classes of org.apache.bookkeeper.metastore.InMemoryMetastoreTable.MetadataVersion

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.