git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@802109 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2009-08-07 18:01:31 +00:00
parent 687944284d
commit 1d4d0e4679
1 changed files with 33 additions and 0 deletions

View File

@ -303,4 +303,37 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter {
public void setEnableJournalDiskSyncs(boolean enableJournalDiskSyncs) {
this.letter.setEnableJournalDiskSyncs(enableJournalDiskSyncs);
}
/**
* Get the indexCacheSize
* @return the indexCacheSize
*/
public int getIndexCacheSize() {
return this.letter.getIndexCacheSize();
}
/**
* Set the indexCacheSize
* @param indexCacheSize the indexCacheSize to set
*/
public void setIndexCacheSize(int indexCacheSize) {
this.letter.setIndexCacheSize(indexCacheSize);
}
/**
* Get the ignoreMissingJournalfiles
* @return the ignoreMissingJournalfiles
*/
public boolean isIgnoreMissingJournalfiles() {
return this.letter.isIgnoreMissingJournalfiles();
}
/**
* Set the ignoreMissingJournalfiles
* @param ignoreMissingJournalfiles the ignoreMissingJournalfiles to set
*/
public void setIgnoreMissingJournalfiles(boolean ignoreMissingJournalfiles) {
this.letter.setIgnoreMissingJournalfiles(ignoreMissingJournalfiles);
}
}