Package org.apache.bookkeeper.bookie.Journal

Examples of org.apache.bookkeeper.bookie.Journal.LastLogMark


    /**
     * Print last log mark
     */
    protected void printLastLogMark() throws IOException {
        LastLogMark lastLogMark = getJournal().getLastLogMark();
        System.out.println("LastLogMark: Journal Id - " + lastLogMark.getTxnLogId() + "("
                + Long.toHexString(lastLogMark.getTxnLogId()) + ".txn), Pos - "
                + lastLogMark.getTxnLogPosition());
    }
View Full Code Here


    /**
     * Print last log mark
     */
    protected void printLastLogMark() throws IOException {
        LastLogMark lastLogMark = getJournal().getLastLogMark();
        System.out.println("LastLogMark: Journal Id - " + lastLogMark.getTxnLogId() + "("
                + Long.toHexString(lastLogMark.getTxnLogId()) + ".txn), Pos - "
                + lastLogMark.getTxnLogPosition());
    }
View Full Code Here

    /**
     * Print last log mark
     */
    protected void printLastLogMark() throws IOException {
        LastLogMark lastLogMark = getJournal().getLastLogMark();
        System.out.println("LastLogMark: Journal Id - " + lastLogMark.getTxnLogId() + "("
                + Long.toHexString(lastLogMark.getTxnLogId()) + ".txn), Pos - "
                + lastLogMark.getTxnLogPosition());
    }
View Full Code Here

TOP

Related Classes of org.apache.bookkeeper.bookie.Journal.LastLogMark

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.