Package org.apache.bookkeeper.bookie.Bookie

Examples of org.apache.bookkeeper.bookie.Bookie.JournalIdFilter


        // Sleep for a while to ensure data are flushed
        Thread.sleep(2000);

        // verify that we only keep at most journal files
        for (File journalDir : tmpDirs) {
            List<Long> logs = Bookie.listJournalIds(journalDir, new JournalIdFilter() {
                @Override
                public boolean accept(long journalId) {
                    return true;
                }
            });
View Full Code Here

TOP

Related Classes of org.apache.bookkeeper.bookie.Bookie.JournalIdFilter

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.