Uses of Interface
org.mule.api.store.ObjectStore

Packages that use ObjectStore
org.mule.api.store   
org.mule.config.spring.factories   
org.mule.routing Defines the core routing patterns supported by mule. 
org.mule.routing.correlation   
org.mule.transport.jdbc.store   
org.mule.util.queue A resource manager that allow access to transactional queues with optional persistence. 
org.mule.util.store   
 

Uses of ObjectStore in org.mule.api.store
 

Subinterfaces of ObjectStore in org.mule.api.store
 interface ExpirableObjectStore<T extends Serializable>
           
 interface ListableObjectStore<T extends Serializable>
           
 interface PartitionableExpirableObjectStore<T extends Serializable>
           
 interface PartitionableObjectStore<T extends Serializable>
           
 interface QueueStore<T extends Serializable>
          Defines a <ListableObjectStore to store data for event queues.
 

Methods in org.mule.api.store with type parameters of type ObjectStore
<T extends ObjectStore<? extends Serializable>>
T
ObjectStoreManager.getObjectStore(String name)
          Return the partition of the default in-memory store with the given name, creating it if necessary.
<T extends ObjectStore<? extends Serializable>>
T
ObjectStoreManager.getObjectStore(String name, boolean isPersistent)
          Return the partition of the default in-memory or persistent store with the given name, creating it if necessary.
<T extends ObjectStore<? extends Serializable>>
T
ObjectStoreManager.getObjectStore(String name, boolean isPersistent, int maxEntries, int entryTTL, int expirationInterval)
          Return the monitored partition of the default in-memory or persistent store with the given name, creating it if necessary.
 

Methods in org.mule.api.store with parameters of type ObjectStore
 void ObjectStoreManager.disposeStore(ObjectStore<? extends Serializable> store)
          Delete all objects from the partition
 

Uses of ObjectStore in org.mule.config.spring.factories
 

Methods in org.mule.config.spring.factories that return ObjectStore
protected  ObjectStore<Serializable> ObjectStoreFromRegistryFactoryBean.createInstance()
           
 

Uses of ObjectStore in org.mule.routing
 

Fields in org.mule.routing declared as ObjectStore
protected  ObjectStore<String> IdempotentMessageFilter.store
           
 

Methods in org.mule.routing that return ObjectStore
protected  ObjectStore<String> IdempotentMessageFilter.createMessageIdStore()
           
 ObjectStore<String> IdempotentMessageFilter.getStore()
           
 

Methods in org.mule.routing with parameters of type ObjectStore
 void IdempotentMessageFilter.setStore(ObjectStore<String> store)
           
 

Uses of ObjectStore in org.mule.routing.correlation
 

Fields in org.mule.routing.correlation declared as ObjectStore
protected  ObjectStore<Long> EventCorrelator.processedGroups
           
 

Uses of ObjectStore in org.mule.transport.jdbc.store
 

Classes in org.mule.transport.jdbc.store that implement ObjectStore
 class JdbcObjectStore<T extends Serializable>
           
 

Uses of ObjectStore in org.mule.util.queue
 

Method parameters in org.mule.util.queue with type arguments of type ObjectStore
static void QueueInfo.registerDelegateFactory(Class<? extends ObjectStore> storeType, QueueInfo.QueueInfoDelegateFactory factory)
           
 

Uses of ObjectStore in org.mule.util.store
 

Classes in org.mule.util.store that implement ObjectStore
 class AbstractMonitoredObjectStore<T extends Serializable>
          TODO
 class AbstractObjectStore<T extends Serializable>
          This is an abstract superclass for ObjectStore implementations that conforms to the contract defined in the interface's javadocs.
 class AbstractPartitionedObjectStore<T extends Serializable>
           
 class InMemoryObjectStore<T extends Serializable>
          InMemoryObjectStore implements an optionally bounded in-memory store for message IDs with periodic expiry of old entries.
 class ManagedObjectStore<T extends Serializable>
           
 class MonitoredObjectStoreWrapper<T extends Serializable>
          The MonitoredObjectStoreWrapper wraps an ObjectStore which does not support direct expiry and adds this behavior
 class ObjectStorePartition<T extends Serializable>
           
 class PartitionedInMemoryObjectStore<T extends Serializable>
           
 class PartitionedObjectStoreWrapper<T extends Serializable>
           
 class PartitionedPersistentObjectStore<T extends Serializable>
           
 class QueuePersistenceObjectStore<T extends Serializable>
           This is an ObjectStore implementation that is to be used to persist messages on Mule's internal queues.
 class QueueStoreAdapter<T extends Serializable>
          Adapts a ListableObjectStore to make it useful to store event queues.
 class SimpleMemoryObjectStore<T extends Serializable>
           
 class TextFileObjectStore
          A Simple object store that stores String objects by key to a text file.
 

Methods in org.mule.util.store with type parameters of type ObjectStore
<T extends ObjectStore<? extends Serializable>>
T
MuleObjectStoreManager.getObjectStore(String name)
           
<T extends ObjectStore<? extends Serializable>>
T
MuleObjectStoreManager.getObjectStore(String name, boolean isPersistent)
           
<T extends ObjectStore<? extends Serializable>>
T
MuleObjectStoreManager.getObjectStore(String name, boolean isPersistent, int maxEntries, int entryTTL, int expirationInterval)
           
 

Methods in org.mule.util.store that return ObjectStore
 ObjectStore<Serializable> MuleDefaultObjectStoreFactory.createDefaultInMemoryObjectStore()
           
 ObjectStore<Serializable> DefaultObjectStoreFactory.createDefaultInMemoryObjectStore()
           
static ObjectStore<Serializable> DefaultObjectStoreFactoryBean.createDefaultInMemoryObjectStore()
           
 ObjectStore<Serializable> MuleDefaultObjectStoreFactory.createDefaultPersistentObjectStore()
           
 ObjectStore<Serializable> DefaultObjectStoreFactory.createDefaultPersistentObjectStore()
           
static ObjectStore<Serializable> DefaultObjectStoreFactoryBean.createDefaultPersistentObjectStore()
           
 ObjectStore<Serializable> MuleDefaultObjectStoreFactory.createDefaultUserObjectStore()
           
 ObjectStore<Serializable> DefaultObjectStoreFactory.createDefaultUserObjectStore()
           
 

Methods in org.mule.util.store with parameters of type ObjectStore
 void MuleObjectStoreManager.disposeStore(ObjectStore<? extends Serializable> store)
           
 



Copyright © 2003-2012 MuleSoft, Inc.. All Rights Reserved.