Uses of Class
net.timewalker.ffmq4.storage.data.DataStoreException
-
Packages that use DataStoreException Package Description net.timewalker.ffmq4.storage.data net.timewalker.ffmq4.storage.data.impl net.timewalker.ffmq4.storage.data.impl.journal -
-
Uses of DataStoreException in net.timewalker.ffmq4.storage.data
Subclasses of DataStoreException in net.timewalker.ffmq4.storage.data Modifier and Type Class Description classDataStoreFullExceptionDataStoreFullExceptionMethods in net.timewalker.ffmq4.storage.data that throw DataStoreException Modifier and Type Method Description voidDataStore. commitChanges()Ensure everything's persisted (synchronous)voidDataStore. commitChanges(SynchronizationBarrier barrier)Ensure everything's persisted (asynchronous)intLinkedDataStore. delete(int handle)Delete data associated to the given handle from the storeintLinkedDataStore. first()Get the first data handle storedvoidLinkedDataStore. init()Initialize the data storebooleanLinkedDataStore. isLocked(int handle)Check if the data associated with a given handle is lockedvoidLinkedDataStore. lock(int handle)Lock the data associated to a given handleintLinkedDataStore. next(int handle)Get the next data handle after the given oneintLinkedDataStore. previous(int handle)Get the previous data handle after the given oneintLinkedDataStore. replace(int handle, Object obj)Replace data in the store at the given positionObjectLinkedDataStore. retrieve(int handle)Retrieve the data associated to a given handleintLinkedDataStore. store(Object obj, int previousHandle)Put some data under in the store after the previous handle datavoidLinkedDataStore. unlock(int handle)Unlock the data associated to a given handle -
Uses of DataStoreException in net.timewalker.ffmq4.storage.data.impl
Methods in net.timewalker.ffmq4.storage.data.impl that throw DataStoreException Modifier and Type Method Description protected voidAbstractBlockBasedDataStore. checkHandle(int handle)protected abstract voidAbstractDataStore. checkHandle(int handle)Check handle validityprotected voidInMemoryLinkedDataStore. checkHandle(int handle)voidBlockBasedDataStore. commitChanges()voidBlockBasedDataStore. commitChanges(SynchronizationBarrier barrier)voidInMemoryLinkedDataStore. commitChanges()voidInMemoryLinkedDataStore. commitChanges(SynchronizationBarrier barrier)voidJournalingBlockBasedDataStore. commitChanges()voidJournalingBlockBasedDataStore. commitChanges(SynchronizationBarrier barrier)static voidBlockBasedDataStoreTools. create(String baseName, File dataFolder, int blockCount, int blockSize, boolean forceSync)Create the filesystem for a new storeintAbstractBlockBasedDataStore. delete(int handle)static voidBlockBasedDataStoreTools. delete(String baseName, File dataFolder, boolean force)Delete the filesystem of a storeintInMemoryLinkedDataStore. delete(int handle)protected abstract voidAbstractBlockBasedDataStore. extendStoreFiles(int oldBlockCount, int newBlockCount)Extend the store files to newBlockCountprotected voidBlockBasedDataStore. extendStoreFiles(int oldBlockCount, int newBlockCount)protected voidJournalingBlockBasedDataStore. extendStoreFiles(int oldBlockCount, int newBlockCount)intAbstractBlockBasedDataStore. first()intInMemoryLinkedDataStore. first()protected abstract voidAbstractBlockBasedDataStore. flush()Flush internal buffersprotected voidBlockBasedDataStore. flush()protected voidJournalingBlockBasedDataStore. flush()voidAbstractBlockBasedDataStore. init()voidInMemoryLinkedDataStore. init()protected voidAbstractBlockBasedDataStore. initFilesystem()protected voidBlockBasedDataStore. initFilesystem()protected voidJournalingBlockBasedDataStore. initFilesystem()protected voidAbstractBlockBasedDataStore. integrityCheck()Run an integrity check on the store files and fix them as necessarybooleanAbstractDataStore. isLocked(int handle)voidAbstractDataStore. lock(int handle)intAbstractBlockBasedDataStore. next(int handle)intInMemoryLinkedDataStore. next(int handle)intAbstractBlockBasedDataStore. previous(int handle)intInMemoryLinkedDataStore. previous(int handle)protected abstract voidAbstractBlockBasedDataStore. readDataBlock(byte[] data, int offset, int len, int blockHandle)Read a data block to diskprotected voidBlockBasedDataStore. readDataBlock(byte[] data, int offset, int len, int blockHandle)protected voidJournalingBlockBasedDataStore. readDataBlock(byte[] data, int offset, int len, int blockHandle)intAbstractBlockBasedDataStore. replace(int handle, Object obj)intInMemoryLinkedDataStore. replace(int handle, Object obj)ObjectAbstractBlockBasedDataStore. retrieve(int handle)ObjectInMemoryLinkedDataStore. retrieve(int handle)byte[]AbstractBlockBasedDataStore. retrieveHeader(int handle, int headerSize)intAbstractBlockBasedDataStore. store(Object obj, int previousHandle)intInMemoryLinkedDataStore. store(Object obj, int previousHandle)voidAbstractDataStore. unlock(int handle)protected abstract voidAbstractBlockBasedDataStore. writeAllocationBlock(int blockIndex)Write an allocation block to diskprotected voidBlockBasedDataStore. writeAllocationBlock(int blockIndex)protected voidJournalingBlockBasedDataStore. writeAllocationBlock(int blockIndex)protected abstract voidAbstractBlockBasedDataStore. writeDataBlock(byte[] data, int offset, int len, int blockHandle)Write a data block to diskprotected voidBlockBasedDataStore. writeDataBlock(byte[] data, int offset, int len, int blockHandle)protected voidJournalingBlockBasedDataStore. writeDataBlock(byte[] data, int offset, int len, int blockHandle)protected abstract voidAbstractBlockBasedDataStore. writeFirstBlock()Write the first block index to diskprotected voidBlockBasedDataStore. writeFirstBlock()protected voidJournalingBlockBasedDataStore. writeFirstBlock() -
Uses of DataStoreException in net.timewalker.ffmq4.storage.data.impl.journal
Subclasses of DataStoreException in net.timewalker.ffmq4.storage.data.impl.journal Modifier and Type Class Description classJournalExceptionJournalException
-