@ManagedResource(description="File based idempotent repository") public class FileIdempotentRepository extends ServiceSupport implements IdempotentRepository<String>
IdempotentRepository.
Care should be taken to use a suitable underlying Map to avoid this class being a
memory leak.shutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
FileIdempotentRepository() |
FileIdempotentRepository(File fileStore,
Map<String,Object> set) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(String key)
Adds the key to the repository.
|
protected void |
appendToStore(String messageId)
Appends the given message id to the file store
|
boolean |
confirm(String key)
Confirms the key, after the exchange has been processed successfully.
|
boolean |
contains(String key)
Returns true if this repository contains the specified element.
|
protected void |
doStart()
Implementations override this method to support customized start/stop.
|
protected void |
doStop()
Implementations override this method to support customized start/stop.
|
static IdempotentRepository<String> |
fileIdempotentRepository(File fileStore)
Creates a new file based repository using a
LRUCache
as 1st level cache with a default of 1000 entries in the cache. |
static IdempotentRepository<String> |
fileIdempotentRepository(File fileStore,
int cacheSize)
Creates a new file based repository using a
LRUCache
as 1st level cache. |
static IdempotentRepository<String> |
fileIdempotentRepository(File fileStore,
int cacheSize,
long maxFileStoreSize)
Creates a new file based repository using a
LRUCache
as 1st level cache. |
static IdempotentRepository<String> |
fileIdempotentRepository(File store,
Map<String,Object> cache)
Creates a new file based repository using the given
Map
as 1st level cache. |
Map<String,Object> |
getCache() |
int |
getCacheSize() |
String |
getFilePath() |
File |
getFileStore() |
long |
getMaxFileStoreSize() |
protected void |
loadStore()
Loads the given file store into the 1st level cache
|
boolean |
remove(String key)
Removes the key from the repository.
|
void |
reset()
Reset and clears the store to force it to reload from file
|
void |
setCache(Map<String,Object> cache) |
void |
setCacheSize(int size)
Sets the cache size
|
void |
setFileStore(File fileStore) |
void |
setMaxFileStoreSize(long maxFileStoreSize)
Sets the maximum file size for the file store in bytes.
|
protected void |
trunkStore()
Trunks the file store when the max store size is hit by rewriting the 1st level cache
to the file store.
|
doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendpublic static IdempotentRepository<String> fileIdempotentRepository(File fileStore)
LRUCache
as 1st level cache with a default of 1000 entries in the cache.fileStore - the file storepublic static IdempotentRepository<String> fileIdempotentRepository(File fileStore, int cacheSize)
LRUCache
as 1st level cache.fileStore - the file storecacheSize - the cache sizepublic static IdempotentRepository<String> fileIdempotentRepository(File fileStore, int cacheSize, long maxFileStoreSize)
LRUCache
as 1st level cache.fileStore - the file storecacheSize - the cache sizemaxFileStoreSize - the max size in bytes for the filestore filepublic static IdempotentRepository<String> fileIdempotentRepository(File store, Map<String,Object> cache)
Map
as 1st level cache.
Care should be taken to use a suitable underlying Map to avoid this class being a
memory leak.store - the file storecache - the cache to use as 1st level cache@ManagedOperation(description="Adds the key to the store") public boolean add(String key)
IdempotentRepositoryadd in interface IdempotentRepository<String>key - the key of the message for duplicate test@ManagedOperation(description="Does the store contain the given key") public boolean contains(String key)
IdempotentRepositorycontains in interface IdempotentRepository<String>key - the key of the message@ManagedOperation(description="Remove the key from the store") public boolean remove(String key)
IdempotentRepositoryremove in interface IdempotentRepository<String>key - the key of the message for duplicate testpublic boolean confirm(String key)
IdempotentRepositoryconfirm in interface IdempotentRepository<String>key - the key of the message for duplicate testpublic File getFileStore()
public void setFileStore(File fileStore)
@ManagedAttribute(description="The file path for the store") public String getFilePath()
@ManagedAttribute(description="The maximum file size for the file store in bytes") public long getMaxFileStoreSize()
@ManagedAttribute(description="The maximum file size for the file store in bytes") public void setMaxFileStoreSize(long maxFileStoreSize)
public void setCacheSize(int size)
@ManagedAttribute(description="The current cache size") public int getCacheSize()
@ManagedOperation(description="Reset and reloads the file store") public void reset() throws IOException
IOExceptionprotected void appendToStore(String messageId)
messageId - the message idprotected void trunkStore()
protected void loadStore()
throws IOException
IOExceptionprotected void doStart()
throws Exception
ServiceSupportServiceSupport.doStop() for more details.doStart in class ServiceSupportExceptionServiceSupport.doStop()protected void doStop()
throws Exception
ServiceSupportServiceSupport.doStop() method when
the service is being stopped. This method will also be invoked
if the service is still in uninitialized state (eg has not
been started). The method is always called to allow the service
to do custom logic when the service is being stopped, such as when
CamelContext is shutting down.doStop in class ServiceSupportExceptionServiceSupport.doStart()Apache Camel