protected class BackupJournalRM.FlashConsumer extends Object implements Journal.JournalConsumer
| Modifier | Constructor and Description | 
|---|---|
protected | 
FlashConsumer()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
dedupe(byte[][] aab)
This method may be invoked by the Journal implementation to request that any immutable byte arrays managed by the consumer be de-duplicated. 
 | 
void | 
dispose()
Invoked when all resources owned by the implementer can safely be released. 
 | 
void | 
evacuate(long lTicketMask, long lTicketValue)
This method may be invoked by the Journal implementation to request that the consumer evacuate a particular journal file. 
 | 
String | 
getDescription()
Format a String description of the Consumer. 
 | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclose
public void evacuate(long lTicketMask,
                     long lTicketValue)
evacuate in interface Journal.JournalConsumerlTicketMask - indicates which bits of the tickets to checklTicketValue - indicates what bit pattern needs to be matched on the tickets in order to select them for evacuationpublic void dedupe(byte[][] aab)
dedupe in interface Journal.JournalConsumeraab - an array of byte[] objects for intern-ing byte[] referencespublic String getDescription()
getDescription in interface Journal.JournalConsumerpublic void dispose()
Once disposed of the object should no longer be considered to be usable.
Note the Disposable interface is compatible with try-with-resources which will automatically invoke this method.
dispose in interface Disposable