Package | Description |
---|---|
org.apache.activeio.journal |
Provides the API for storing and accessing record based binary data in sequential log files.
|
org.apache.activeio.journal.active |
The Active Journal is a high performance Journal implemenation which does not
place limits on how big the data being logged can be.
|
org.apache.activeio.journal.howl |
A Journal implemenation using using a high performance transaction log
implemented using Howl
|
Modifier and Type | Method and Description |
---|---|
RecordLocation |
Journal.getNextRecordLocation(RecordLocation location)
Allows you to get the next RecordLocation after the
location that
is in the journal. |
Packet |
Journal.read(RecordLocation location)
Reads a previously written record from the journal.
|
void |
Journal.setMark(RecordLocation location,
boolean sync)
Informs the journal that all the journal space up to the
location is no longer
needed and can be reclaimed for reuse. |
Modifier and Type | Method and Description |
---|---|
Location |
LogFileManager.getNextDataRecordLocation(Location lastLocation) |
RecordLocation |
JournalImpl.getNextRecordLocation(RecordLocation lastLocation) |
Packet |
JournalImpl.read(RecordLocation l) |
Packet |
LogFileManager.readPacket(Location location) |
void |
JournalImpl.setMark(RecordLocation l,
boolean force) |
Modifier and Type | Method and Description |
---|---|
RecordLocation |
HowlJournal.getNextRecordLocation(RecordLocation lastLocation) |
Packet |
HowlJournal.read(RecordLocation location) |
void |
HowlJournal.setMark(RecordLocation recordLocator,
boolean force) |
Copyright © 2005–2015 The Apache Software Foundation. All rights reserved.