Examples of LastLogMark


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

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

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
TOP
Copyright © 2018 www.massapi.com. 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.