Uses of Class
org.apache.activemq.broker.BrokerService

Packages that use BrokerService
org.apache.activemq.broker The core classes for the ActiveMQ Message Broker and its connectors. 
org.apache.activemq.broker.ft Helper classes for implementing fault tolerance 
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.broker.region.virtual Implementation classes for Virtual Destinations 
org.apache.activemq.maven   
org.apache.activemq.network Support for federated networks of brokers. 
org.apache.activemq.network.jms Support for a federated network using a foreign JMS provider. 
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.tool   
org.apache.activemq.transport The core Transport abstraction and support classes 
org.apache.activemq.transport.http A transport using the HTTP protocol to allow ActiveMQ to tunnel through firewalls. 
org.apache.activemq.transport.stomp An implementation of the Stomp protocol which is a simple wire protocol for writing clients for ActiveMQ in different languages like Ruby, Python, PHP, C etc. 
org.apache.activemq.transport.vm In-JVM based Transport implementation. 
org.apache.activemq.util Some utility classes 
org.apache.activemq.web Web Connectors so that messages can be sent via HTTP POST or read via HTTP POST or GET as well as support for web streaming to we browser or JavaScript clients. 
org.apache.activemq.xbean Helper classes for creating the a broker using XBean and for creating a broker within Spring
 

Uses of BrokerService in org.apache.activemq.broker
 

Subclasses of BrokerService in org.apache.activemq.broker
 class SslBrokerService
          A BrokerService that allows access to the key and trust managers used by SSL connections.
 

Methods in org.apache.activemq.broker that return BrokerService
static BrokerService BrokerFactory.createBroker(String brokerURI)
          Creates a broker from a URI configuration
static BrokerService BrokerFactory.createBroker(String brokerURI, boolean startBroker)
          Creates a broker from a URI configuration
 BrokerService BrokerFactoryHandler.createBroker(URI brokerURI)
           
 BrokerService DefaultBrokerFactory.createBroker(URI brokerURI)
           
static BrokerService BrokerFactory.createBroker(URI brokerURI)
          Creates a broker from a URI configuration
 BrokerService PropertiesBrokerFactory.createBroker(URI brokerURI)
           
static BrokerService BrokerFactory.createBroker(URI brokerURI, boolean startBroker)
          Creates a broker from a URI configuration
protected  BrokerService PropertiesBrokerFactory.createBrokerService(URI brokerURI, Map properties)
           
 BrokerService BrokerRegistry.findFirst()
          Returns the first registered broker found
 BrokerService Broker.getBrokerService()
           
 BrokerService TransportConnector.getBrokerService()
           
 BrokerService EmptyBroker.getBrokerService()
           
 BrokerService MutableBrokerFilter.getBrokerService()
           
 BrokerService BrokerFilter.getBrokerService()
           
 BrokerService ErrorBroker.getBrokerService()
           
 BrokerService BrokerRegistry.lookup(String brokerName)
           
 

Methods in org.apache.activemq.broker that return types with arguments of type BrokerService
 Map<String,BrokerService> BrokerRegistry.getBrokers()
           
 

Methods in org.apache.activemq.broker with parameters of type BrokerService
 void BrokerRegistry.bind(String brokerName, BrokerService broker)
           
 void TransportConnector.setBrokerService(BrokerService brokerService)
          This is called by the BrokerService right before it starts the transport.
 void BrokerServiceAware.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.broker.ft
 

Methods in org.apache.activemq.broker.ft with parameters of type BrokerService
 void MasterConnector.setBrokerService(BrokerService broker)
           
 

Uses of BrokerService in org.apache.activemq.broker.jmx
 

Constructors in org.apache.activemq.broker.jmx with parameters of type BrokerService
BrokerView(BrokerService brokerService, ManagedRegionBroker managedBroker)
           
ManagedRegionBroker(BrokerService brokerService, ManagementContext context, ObjectName brokerObjectName, TaskRunnerFactory taskRunnerFactory, SystemUsage memoryManager, DestinationFactory destinationFactory, DestinationInterceptor destinationInterceptor)
           
ManagedTempQueueRegion(ManagedRegionBroker broker, BrokerService brokerService, DestinationStatistics destinationStatistics, SystemUsage memoryManager, TaskRunnerFactory taskRunnerFactory, DestinationFactory destinationFactory)
           
 

Uses of BrokerService in org.apache.activemq.broker.region
 

Fields in org.apache.activemq.broker.region declared as BrokerService
protected  BrokerService BaseDestination.brokerService
           
protected  BrokerService RegionBroker.brokerService
           
 

Methods in org.apache.activemq.broker.region that return BrokerService
 BrokerService RegionBroker.getBrokerService()
           
 

Constructors in org.apache.activemq.broker.region with parameters of type BrokerService
BaseDestination(BrokerService brokerService, MessageStore store, ActiveMQDestination destination, DestinationStatistics parentStats)
           
DestinationFactoryImpl(BrokerService brokerService, TaskRunnerFactory taskRunnerFactory, PersistenceAdapter persistenceAdapter)
           
Queue(BrokerService brokerService, ActiveMQDestination destination, MessageStore store, DestinationStatistics parentStats, TaskRunnerFactory taskFactory)
           
RegionBroker(BrokerService brokerService, TaskRunnerFactory taskRunnerFactory, SystemUsage memoryManager, DestinationFactory destinationFactory, DestinationInterceptor destinationInterceptor)
           
TempQueue(BrokerService brokerService, ActiveMQDestination destination, MessageStore store, DestinationStatistics parentStats, TaskRunnerFactory taskFactory)
           
TempQueueRegion(RegionBroker broker, BrokerService brokerService, DestinationStatistics destinationStatistics, SystemUsage memoryManager, TaskRunnerFactory taskRunnerFactory, DestinationFactory destinationFactory)
           
TempTopic(BrokerService brokerService, ActiveMQDestination destination, TopicMessageStore store, DestinationStatistics parentStats, TaskRunnerFactory taskFactory)
           
Topic(BrokerService brokerService, ActiveMQDestination destination, TopicMessageStore store, DestinationStatistics parentStats, TaskRunnerFactory taskFactory)
           
 

Uses of BrokerService in org.apache.activemq.broker.region.virtual
 

Methods in org.apache.activemq.broker.region.virtual with parameters of type BrokerService
 void MirroredQueue.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.maven
 

Methods in org.apache.activemq.maven with parameters of type BrokerService
protected  void BrokerMojo.waitForShutdown(BrokerService broker)
          Wait for a shutdown invocation elsewhere
 

Uses of BrokerService in org.apache.activemq.network
 

Methods in org.apache.activemq.network that return BrokerService
 BrokerService NetworkConnector.getBrokerService()
           
 

Methods in org.apache.activemq.network with parameters of type BrokerService
 void NetworkConnector.setBrokerService(BrokerService brokerService)
           
 void DemandForwardingBridgeSupport.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.network.jms
 

Methods in org.apache.activemq.network.jms with parameters of type BrokerService
 void JmsConnector.setBrokerService(BrokerService service)
          One way to configure the local connection - this is called by The BrokerService when the Connector is embedded
 

Uses of BrokerService in org.apache.activemq.store.amq
 

Methods in org.apache.activemq.store.amq that return BrokerService
 BrokerService AMQPersistenceAdapter.getBrokerService()
           
 

Methods in org.apache.activemq.store.amq with parameters of type BrokerService
 void AMQPersistenceAdapter.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.store.jdbc
 

Methods in org.apache.activemq.store.jdbc that return BrokerService
 BrokerService JDBCPersistenceAdapter.getBrokerService()
           
 

Methods in org.apache.activemq.store.jdbc with parameters of type BrokerService
 void JDBCPersistenceAdapter.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.store.journal
 

Methods in org.apache.activemq.store.journal with parameters of type BrokerService
 void JournalPersistenceAdapter.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.store.kahadaptor
 

Methods in org.apache.activemq.store.kahadaptor with parameters of type BrokerService
 void KahaPersistenceAdapter.setBrokerService(BrokerService brokerService)
           
 void KahaTransactionStore.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.store.kahadb
 

Methods in org.apache.activemq.store.kahadb with parameters of type BrokerService
 void MessageDatabase.setBrokerService(BrokerService brokerService)
           
 void KahaDBPersistenceAdapter.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.tool
 

Fields in org.apache.activemq.tool declared as BrokerService
protected  BrokerService JMSMemtest.broker
           
 

Methods in org.apache.activemq.tool that return BrokerService
protected  BrokerService JMSMemtest.createBroker()
           
 

Methods in org.apache.activemq.tool with parameters of type BrokerService
protected  void JMSMemtest.configureBroker(BrokerService broker)
           
 

Uses of BrokerService in org.apache.activemq.transport
 

Methods in org.apache.activemq.transport with parameters of type BrokerService
static TransportServer TransportFactory.bind(BrokerService brokerService, URI location)
           
 

Uses of BrokerService in org.apache.activemq.transport.http
 

Fields in org.apache.activemq.transport.http declared as BrokerService
protected  BrokerService HttpEmbeddedTunnelServlet.broker
           
 

Methods in org.apache.activemq.transport.http that return BrokerService
protected  BrokerService HttpEmbeddedTunnelServlet.createBroker()
          Factory method to create a new broker
protected  BrokerService HttpSpringEmbeddedTunnelServlet.createBroker()
          Factory method to create a new broker
 

Uses of BrokerService in org.apache.activemq.transport.stomp
 

Methods in org.apache.activemq.transport.stomp with parameters of type BrokerService
 void StompSslTransportFactory.setBrokerService(BrokerService brokerService)
           
 void StompTransportFactory.setBrokerService(BrokerService brokerService)
           
 void StompNIOTransportFactory.setBrokerService(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.transport.vm
 

Fields in org.apache.activemq.transport.vm with type parameters of type BrokerService
static ConcurrentHashMap<String,BrokerService> VMTransportFactory.BROKERS
           
 

Uses of BrokerService in org.apache.activemq.util
 

Methods in org.apache.activemq.util with parameters of type BrokerService
 void DefaultIOExceptionHandler.setBrokerService(BrokerService broker)
           
 

Uses of BrokerService in org.apache.activemq.web
 

Methods in org.apache.activemq.web that return BrokerService
protected  BrokerService SpringBrokerContextListener.createBroker(ServletContext context)
          Factory method to create a new ActiveMQ Broker
protected static BrokerService SingletonBrokerFacade.findSingletonBroker()
           
protected  BrokerService SpringBrokerContextListener.getBrokerService()
          Return the broker container.
 BrokerService LocalBrokerFacade.getBrokerService()
           
 

Methods in org.apache.activemq.web with parameters of type BrokerService
protected  void SpringBrokerContextListener.setBrokerService(BrokerService container)
          Set the broker container to be used by this listener
 

Constructors in org.apache.activemq.web with parameters of type BrokerService
LocalBrokerFacade(BrokerService brokerService)
           
 

Uses of BrokerService in org.apache.activemq.xbean
 

Subclasses of BrokerService in org.apache.activemq.xbean
 class XBeanBrokerService
          An ActiveMQ Message Broker.
 

Methods in org.apache.activemq.xbean that return BrokerService
 BrokerService XBeanBrokerFactory.createBroker(URI config)
           
 BrokerService BrokerFactoryBean.getBroker()
           
 

Methods in org.apache.activemq.xbean that return types with arguments of type BrokerService
 Class<BrokerService> PooledBrokerFactoryBean.getObjectType()
           
 



Copyright © 2005-2011 Apache Software Foundation. All Rights Reserved.