Package org.apache.jackrabbit.oak.plugins.segment.memory

Examples of org.apache.jackrabbit.oak.plugins.segment.memory.MemoryJournal


        this.index = 0;
        while (loadSegments()) {
            this.index++;
        }

        journals.put("root", new MemoryJournal(this, root));
    }
View Full Code Here


    @Override
    public synchronized Journal getJournal(final String name) {
        Journal journal = journals.get(name);
        if (journal == null) {
            journal = new MemoryJournal(this, "root");
            journals.put(name, journal);
        }
        return journal;
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.segment.memory.MemoryJournal

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.