Uses of Interface
org.apache.activemq.store.PersistenceAdapter
-
Packages that use PersistenceAdapter Package Description org.apache.activemq.broker The core classes for the ActiveMQ Message Broker and its connectors.org.apache.activemq.broker.jmx JMX MBeans for the broker and its core connectors.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 messagingorg.apache.activemq.store.jdbc Message persistence implemented using JDBCorg.apache.activemq.store.journal Message persistence using a high performance transaction log via the Journal interface.org.apache.activemq.store.kahadb org.apache.activemq.store.memory VM based implementation of message persistenceorg.apache.activemq.usage org.apache.activemq.util -
-
Uses of PersistenceAdapter in org.apache.activemq.broker
Methods in org.apache.activemq.broker that return PersistenceAdapter Modifier and Type Method Description protected PersistenceAdapter
BrokerService. createPersistenceAdapter()
PersistenceAdapter
BrokerService. getPersistenceAdapter()
protected PersistenceAdapter
BrokerService. registerPersistenceAdapterMBean(PersistenceAdapter adaptor)
Methods in org.apache.activemq.broker with parameters of type PersistenceAdapter Modifier and Type Method Description void
Locker. configure(PersistenceAdapter persistenceAdapter)
Optionally configure the locker with the persistence adapter currently used You can use persistence adapter configuration details like, data directory datasource, etc.protected PersistenceAdapter
BrokerService. registerPersistenceAdapterMBean(PersistenceAdapter adaptor)
void
BrokerService. setPersistenceAdapter(PersistenceAdapter persistenceAdapter)
Sets the persistence adaptor implementation to use for this brokerprotected void
BrokerService. unregisterPersistenceAdapterMBean(PersistenceAdapter adaptor)
-
Uses of PersistenceAdapter in org.apache.activemq.broker.jmx
Constructors in org.apache.activemq.broker.jmx with parameters of type PersistenceAdapter Constructor Description PersistenceAdapterView(PersistenceAdapter adapter)
-
Uses of PersistenceAdapter in org.apache.activemq.broker.region
Fields in org.apache.activemq.broker.region declared as PersistenceAdapter Modifier and Type Field Description protected PersistenceAdapter
DestinationFactoryImpl. persistenceAdapter
Methods in org.apache.activemq.broker.region that return PersistenceAdapter Modifier and Type Method Description PersistenceAdapter
DestinationFactoryImpl. getPersistenceAdapter()
Constructors in org.apache.activemq.broker.region with parameters of type PersistenceAdapter Constructor Description DestinationFactoryImpl(BrokerService brokerService, TaskRunnerFactory taskRunnerFactory, PersistenceAdapter persistenceAdapter)
-
Uses of PersistenceAdapter in org.apache.activemq.store
Methods in org.apache.activemq.store that return PersistenceAdapter Modifier and Type Method Description PersistenceAdapter
PersistenceAdapterFactory. createPersistenceAdapter()
Creates a persistence Adapter that can use a given directory to store it's data.Methods in org.apache.activemq.store with parameters of type PersistenceAdapter Modifier and Type Method Description void
SharedFileLocker. configure(PersistenceAdapter persistenceAdapter)
static List<ActiveMQQueue>
PersistenceAdapterSupport. listQueues(PersistenceAdapter adapter)
Provides a means of querying the persistence adapter for a list of ActiveMQQueue instances.static List<ActiveMQQueue>
PersistenceAdapterSupport. listQueues(PersistenceAdapter adapter, PersistenceAdapterSupport.DestinationMatcher matcher)
Provides a means of querying the persistence adapter for a list of ActiveMQQueue instances that match some given search criteria.static List<SubscriptionInfo>
PersistenceAdapterSupport. listSubscriptions(PersistenceAdapter adapter, String clientId)
Searches the set of subscriptions from the given persistence adapter and returns all those that belong to the given ClientId value.static List<ActiveMQTopic>
PersistenceAdapterSupport. listTopics(PersistenceAdapter adapter)
Provides a means of querying the persistence adapter for a list of ActiveMQTopic instances.static List<ActiveMQTopic>
PersistenceAdapterSupport. listTopics(PersistenceAdapter adapter, PersistenceAdapterSupport.DestinationMatcher matcher)
Provides a means of querying the persistence adapter for a list of ActiveMQTopic instances that match some given search criteria. -
Uses of PersistenceAdapter in org.apache.activemq.store.jdbc
Classes in org.apache.activemq.store.jdbc that implement PersistenceAdapter Modifier and Type Class Description class
JDBCPersistenceAdapter
APersistenceAdapter
implementation using JDBC for persistence storage.Methods in org.apache.activemq.store.jdbc with parameters of type PersistenceAdapter Modifier and Type Method Description void
AbstractJDBCLocker. configure(PersistenceAdapter adapter)
-
Uses of PersistenceAdapter in org.apache.activemq.store.journal
Classes in org.apache.activemq.store.journal that implement PersistenceAdapter Modifier and Type Class Description class
JournalPersistenceAdapter
An implementation ofPersistenceAdapter
designed for use with aJournal
and then check pointing asynchronously on a timeout with some other long term persistent storage.Methods in org.apache.activemq.store.journal that return PersistenceAdapter Modifier and Type Method Description PersistenceAdapter
JournalPersistenceAdapterFactory. createPersistenceAdapter()
PersistenceAdapter
JournalPersistenceAdapter. getLongTermPersistence()
Methods in org.apache.activemq.store.journal with parameters of type PersistenceAdapter Modifier and Type Method Description void
JournalPersistenceAdapter. setPersistenceAdapter(PersistenceAdapter longTermPersistence)
Constructors in org.apache.activemq.store.journal with parameters of type PersistenceAdapter Constructor Description JournalPersistenceAdapter(org.apache.activeio.journal.Journal journal, PersistenceAdapter longTermPersistence, TaskRunnerFactory taskRunnerFactory)
-
Uses of PersistenceAdapter in org.apache.activemq.store.kahadb
Classes in org.apache.activemq.store.kahadb that implement PersistenceAdapter Modifier and Type Class Description class
KahaDBPersistenceAdapter
An implementation ofPersistenceAdapter
designed for use with KahaDB - Embedded Lightweight Non-Relational Databaseclass
KahaDBStore
class
MultiKahaDBPersistenceAdapter
An implementation ofPersistenceAdapter
that supports distribution of destinations across multiple kahaDB persistence adaptersclass
TempKahaDBStore
Methods in org.apache.activemq.store.kahadb that return PersistenceAdapter Modifier and Type Method Description PersistenceAdapter
FilteredKahaDBPersistenceAdapter. getPersistenceAdapter()
Methods in org.apache.activemq.store.kahadb that return types with arguments of type PersistenceAdapter Modifier and Type Method Description List<PersistenceAdapter>
MultiKahaDBPersistenceAdapter. getAdapters()
Methods in org.apache.activemq.store.kahadb with parameters of type PersistenceAdapter Modifier and Type Method Description void
FilteredKahaDBPersistenceAdapter. setPersistenceAdapter(PersistenceAdapter persistenceAdapter)
Constructors in org.apache.activemq.store.kahadb with parameters of type PersistenceAdapter Constructor Description FilteredKahaDBPersistenceAdapter(FilteredKahaDBPersistenceAdapter template, ActiveMQDestination destination, PersistenceAdapter adapter)
-
Uses of PersistenceAdapter in org.apache.activemq.store.memory
Classes in org.apache.activemq.store.memory that implement PersistenceAdapter Modifier and Type Class Description class
MemoryPersistenceAdapter
Fields in org.apache.activemq.store.memory declared as PersistenceAdapter Modifier and Type Field Description protected PersistenceAdapter
MemoryTransactionStore. persistenceAdapter
Constructors in org.apache.activemq.store.memory with parameters of type PersistenceAdapter Constructor Description MemoryTransactionStore(PersistenceAdapter persistenceAdapter)
-
Uses of PersistenceAdapter in org.apache.activemq.usage
Methods in org.apache.activemq.usage that return PersistenceAdapter Modifier and Type Method Description PersistenceAdapter
StoreUsage. getStore()
Methods in org.apache.activemq.usage with parameters of type PersistenceAdapter Modifier and Type Method Description void
StoreUsage. setStore(PersistenceAdapter store)
Constructors in org.apache.activemq.usage with parameters of type PersistenceAdapter Constructor Description StoreUsage(String name, PersistenceAdapter store)
SystemUsage(String name, PersistenceAdapter adapter, PListStore tempStore, JobSchedulerStore jobSchedulerStore)
-
Uses of PersistenceAdapter in org.apache.activemq.util
Methods in org.apache.activemq.util that return PersistenceAdapter Modifier and Type Method Description PersistenceAdapter
TransactionTemplate. getPersistenceAdapter()
Constructors in org.apache.activemq.util with parameters of type PersistenceAdapter Constructor Description TransactionTemplate(PersistenceAdapter persistenceAdapter, ConnectionContext context)
-