mirror of https://github.com/apache/activemq.git
expose new options - https://issues.apache.org/activemq/browse/AMQ-2338
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@802109 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
687944284d
commit
1d4d0e4679
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue