Search in sources :

Example 1 with BufferChannelFile

use of org.apache.jena.tdb.base.file.BufferChannelFile in project jena by apache.

the class JournalControl method print.

/**
 * Dump a journal - debug support function - opens the journal specially - inconsistent views possible
 */
public static void print(String filename) {
    BufferChannelFile chan = BufferChannelFile.createUnmanaged(filename, "r");
    Journal journal = new Journal(chan);
    JournalControl.print(journal);
    chan.close();
}
Also used : BufferChannelFile(org.apache.jena.tdb.base.file.BufferChannelFile)

Aggregations

BufferChannelFile (org.apache.jena.tdb.base.file.BufferChannelFile)1