|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MessageStore | |
---|---|
org.apache.activemq.broker.region | Region abstraction and implementations in the Broker. |
org.apache.activemq.store | The APIs which need to be implemented for persistent message stores for durable messaging |
org.apache.activemq.store.amq | The default Store implementation for ActiveMQ |
org.apache.activemq.store.jdbc | Message persistence implemented using JDBC |
org.apache.activemq.store.journal | Message persistence using a high performance transaction log via the Journal interface. |
org.apache.activemq.store.kahadaptor | kaha implementation of message persistence for the broker |
org.apache.activemq.store.kahadb | |
org.apache.activemq.store.memory | VM based implementation of message persistence |
Uses of MessageStore in org.apache.activemq.broker.region |
---|
Fields in org.apache.activemq.broker.region declared as MessageStore | |
---|---|
protected MessageStore |
BaseDestination.store
|
Methods in org.apache.activemq.broker.region that return MessageStore | |
---|---|
MessageStore |
Destination.getMessageStore()
|
MessageStore |
BaseDestination.getMessageStore()
|
MessageStore |
DestinationFilter.getMessageStore()
|
Constructors in org.apache.activemq.broker.region with parameters of type MessageStore | |
---|---|
BaseDestination(BrokerService brokerService,
MessageStore store,
ActiveMQDestination destination,
DestinationStatistics parentStats)
|
|
Queue(BrokerService brokerService,
ActiveMQDestination destination,
MessageStore store,
DestinationStatistics parentStats,
TaskRunnerFactory taskFactory)
|
|
TempQueue(BrokerService brokerService,
ActiveMQDestination destination,
MessageStore store,
DestinationStatistics parentStats,
TaskRunnerFactory taskFactory)
|
Uses of MessageStore in org.apache.activemq.store |
---|
Subinterfaces of MessageStore in org.apache.activemq.store | |
---|---|
interface |
ReferenceStore
Represents a message store which is used by the persistent implementations |
interface |
TopicMessageStore
A MessageStore for durable topic subscriptions |
interface |
TopicReferenceStore
A MessageStore for durable topic subscriptions |
Classes in org.apache.activemq.store that implement MessageStore | |
---|---|
class |
AbstractMessageStore
|
class |
ProxyMessageStore
A simple proxy that delegates to another MessageStore. |
class |
ProxyTopicMessageStore
A simple proxy that delegates to another MessageStore. |
Methods in org.apache.activemq.store that return MessageStore | |
---|---|
MessageStore |
PersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
Factory method to create a new queue message store with the given destination name |
MessageStore |
ProxyMessageStore.getDelegate()
|
MessageStore |
ProxyTopicMessageStore.getDelegate()
|
Constructors in org.apache.activemq.store with parameters of type MessageStore | |
---|---|
ProxyMessageStore(MessageStore delegate)
|
Uses of MessageStore in org.apache.activemq.store.amq |
---|
Classes in org.apache.activemq.store.amq that implement MessageStore | |
---|---|
class |
AMQMessageStore
A MessageStore that uses a Journal to store it's messages. |
class |
AMQTopicMessageStore
A MessageStore that uses a Journal to store it's messages. |
Methods in org.apache.activemq.store.amq that return MessageStore | |
---|---|
MessageStore |
AMQPersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
Uses of MessageStore in org.apache.activemq.store.jdbc |
---|
Classes in org.apache.activemq.store.jdbc that implement MessageStore | |
---|---|
class |
JDBCMessageStore
|
class |
JDBCTopicMessageStore
|
Methods in org.apache.activemq.store.jdbc that return MessageStore | |
---|---|
MessageStore |
JDBCPersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
Uses of MessageStore in org.apache.activemq.store.journal |
---|
Classes in org.apache.activemq.store.journal that implement MessageStore | |
---|---|
class |
JournalMessageStore
A MessageStore that uses a Journal to store it's messages. |
class |
JournalTopicMessageStore
A MessageStore that uses a Journal to store it's messages. |
Fields in org.apache.activemq.store.journal declared as MessageStore | |
---|---|
protected MessageStore |
JournalMessageStore.longTermStore
|
Methods in org.apache.activemq.store.journal that return MessageStore | |
---|---|
MessageStore |
JournalPersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
MessageStore |
JournalMessageStore.getLongTermMessageStore()
|
Constructors in org.apache.activemq.store.journal with parameters of type MessageStore | |
---|---|
JournalMessageStore(JournalPersistenceAdapter adapter,
MessageStore checkpointStore,
ActiveMQDestination destination)
|
Uses of MessageStore in org.apache.activemq.store.kahadaptor |
---|
Classes in org.apache.activemq.store.kahadaptor that implement MessageStore | |
---|---|
class |
KahaMessageStore
An implementation of MessageStore which
uses a JPS Container |
class |
KahaReferenceStore
|
class |
KahaTopicMessageStore
|
class |
KahaTopicReferenceStore
|
Fields in org.apache.activemq.store.kahadaptor with type parameters of type MessageStore | |
---|---|
protected ConcurrentHashMap<ActiveMQDestination,MessageStore> |
KahaPersistenceAdapter.messageStores
|
protected ConcurrentHashMap<ActiveMQQueue,MessageStore> |
KahaPersistenceAdapter.queues
|
Methods in org.apache.activemq.store.kahadaptor that return MessageStore | |
---|---|
MessageStore |
KahaPersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
MessageStore |
KahaReferenceStoreAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
protected MessageStore |
KahaTransactionStore.getStoreById(Object id)
|
MessageStore |
KahaTransactionStore.proxy(MessageStore messageStore)
|
protected MessageStore |
KahaPersistenceAdapter.retrieveMessageStore(Object id)
|
Methods in org.apache.activemq.store.kahadaptor with parameters of type MessageStore | |
---|---|
MessageStore |
KahaTransactionStore.proxy(MessageStore messageStore)
|
Uses of MessageStore in org.apache.activemq.store.kahadb |
---|
Classes in org.apache.activemq.store.kahadb that implement MessageStore | |
---|---|
class |
KahaDBStore.KahaDBMessageStore
|
class |
TempKahaDBStore.KahaDBMessageStore
|
Methods in org.apache.activemq.store.kahadb that return MessageStore | |
---|---|
MessageStore |
KahaDBPersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
MessageStore |
KahaDBStore.createQueueMessageStore(ActiveMQQueue destination)
|
MessageStore |
TempKahaDBStore.createQueueMessageStore(ActiveMQQueue destination)
|
Uses of MessageStore in org.apache.activemq.store.memory |
---|
Classes in org.apache.activemq.store.memory that implement MessageStore | |
---|---|
class |
MemoryMessageStore
An implementation of MessageStore which
uses a |
class |
MemoryTopicMessageStore
|
Methods in org.apache.activemq.store.memory that return MessageStore | |
---|---|
MessageStore |
MemoryPersistenceAdapter.createQueueMessageStore(ActiveMQQueue destination)
|
MessageStore |
MemoryTransactionStore.proxy(MessageStore messageStore)
|
Methods in org.apache.activemq.store.memory with parameters of type MessageStore | |
---|---|
MessageStore |
MemoryTransactionStore.proxy(MessageStore messageStore)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |