當前位置: 首頁>>代碼示例>>Java>>正文


Java BrokerService.setDestinationPolicy方法代碼示例

本文整理匯總了Java中org.apache.activemq.broker.BrokerService.setDestinationPolicy方法的典型用法代碼示例。如果您正苦於以下問題:Java BrokerService.setDestinationPolicy方法的具體用法?Java BrokerService.setDestinationPolicy怎麽用?Java BrokerService.setDestinationPolicy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.activemq.broker.BrokerService的用法示例。


在下文中一共展示了BrokerService.setDestinationPolicy方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: configureBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected void configureBroker(BrokerService broker) throws Exception {
    broker.setUseJmx(true);
    broker.setPersistent(true);
    broker.setDataDirectory("target/activemq-data");
    broker.deleteAllMessages();
    broker.setAdvisorySupport(true);
    broker.addConnector(brokerUri);

    // configure expiration rate
    ActiveMQQueue queueName = new ActiveMQQueue(">");
    PolicyEntry entry = new PolicyEntry();
    entry.setDestination(queueName);
    entry.setExpireMessagesPeriod(1000);

    PolicyMap policyMap = new PolicyMap();
    policyMap.put(queueName, entry);
    broker.setDestinationPolicy(policyMap);
}
 
開發者ID:HydAu,項目名稱:Camel,代碼行數:20,代碼來源:QueueProducerQoSTest.java

示例2: configureBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
private BrokerService configureBroker(String brokerName) throws Exception {
   BrokerService broker = new BrokerService();
   broker.setBrokerName(brokerName);
   broker.setAdvisorySupport(false);
   broker.setPersistent(false);
   broker.setUseJmx(false);
   broker.setSchedulePeriodForDestinationPurge(1000);
   broker.setAllowTempAutoCreationOnSend(true);

   PolicyMap map = new PolicyMap();
   PolicyEntry tempReplyQPolicy = new PolicyEntry();
   tempReplyQPolicy.setOptimizedDispatch(true);
   tempReplyQPolicy.setGcInactiveDestinations(true);
   tempReplyQPolicy.setGcWithNetworkConsumers(true);
   tempReplyQPolicy.setInactiveTimeoutBeforeGC(1000);
   map.put(replyQWildcard, tempReplyQPolicy);
   broker.setDestinationPolicy(map);

   broker.addConnector("tcp://localhost:0");
   brokers.add(broker);
   return broker;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:23,代碼來源:RequestReplyNoAdvisoryNetworkTest.java

示例3: beforeTest

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
/**
 * @throws Exception If failed.
 */
@Before
@SuppressWarnings("unchecked")
public void beforeTest() throws Exception {
    grid().<Integer, String>getOrCreateCache(defaultCacheConfiguration());

    broker = new BrokerService();
    broker.setDeleteAllMessagesOnStartup(true);
    broker.setPersistent(false);
    broker.setPersistenceAdapter(null);
    broker.setPersistenceFactory(null);

    PolicyMap plcMap = new PolicyMap();
    PolicyEntry plc = new PolicyEntry();

    plc.setQueuePrefetch(1);

    broker.setDestinationPolicy(plcMap);
    broker.getDestinationPolicy().setDefaultEntry(plc);
    broker.setSchedulerSupport(false);

    broker.start(true);

    connFactory = new ActiveMQConnectionFactory(BrokerRegistry.getInstance().findFirst().getVmConnectorURI());
}
 
開發者ID:apache,項目名稱:ignite,代碼行數:28,代碼來源:IgniteJmsStreamerTest.java

示例4: doTestGroupConfiguration

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
public MessageGroupMap doTestGroupConfiguration(String type, Class classType) throws Exception {
   broker = new BrokerService();

   PolicyEntry defaultEntry = new PolicyEntry();
   defaultEntry.setMessageGroupMapFactoryType(type);
   PolicyMap policyMap = new PolicyMap();
   policyMap.setDefaultEntry(defaultEntry);
   broker.setDestinationPolicy(policyMap);
   broker.start();
   super.topic = false;
   ActiveMQDestination destination = (ActiveMQDestination) createDestination("org.apache.foo");
   Queue brokerDestination = (Queue) broker.getDestination(destination);

   assertNotNull(brokerDestination);
   MessageGroupMap messageGroupMap = brokerDestination.getMessageGroupOwners();
   assertNotNull(messageGroupMap);
   assertTrue(messageGroupMap.getClass().isAssignableFrom(classType));
   return messageGroupMap;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:20,代碼來源:MessageGroupConfigTest.java

示例5: configureBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
protected void configureBroker(BrokerService answer) throws Exception {
   answer.setPersistent(false);
   ConstantPendingMessageLimitStrategy strategy = new ConstantPendingMessageLimitStrategy();
   strategy.setLimit(10);
   PolicyEntry tempQueueEntry = createPolicyEntry(strategy);
   tempQueueEntry.setTempQueue(true);
   PolicyEntry tempTopicEntry = createPolicyEntry(strategy);
   tempTopicEntry.setTempTopic(true);

   PolicyMap pMap = new PolicyMap();
   final List<PolicyEntry> policyEntries = new ArrayList<>();
   policyEntries.add(tempQueueEntry);
   policyEntries.add(tempTopicEntry);
   pMap.setPolicyEntries(policyEntries);

   answer.setDestinationPolicy(pMap);
   answer.addConnector(bindAddress);
   answer.setDeleteAllMessagesOnStartup(true);
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:20,代碼來源:AdvisoryTempDestinationTests.java

示例6: configureBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
protected void configureBroker(BrokerService answer) throws Exception {
   answer.setPersistent(false);
   PolicyEntry policy = new PolicyEntry();
   policy.setAdvisoryForFastProducers(true);
   policy.setAdvisoryForConsumed(true);
   policy.setAdvisoryForDelivery(true);
   policy.setAdvisoryForDiscardingMessages(true);
   policy.setAdvisoryForSlowConsumers(true);
   policy.setAdvisoryWhenFull(true);
   policy.setProducerFlowControl(false);
   ConstantPendingMessageLimitStrategy strategy = new ConstantPendingMessageLimitStrategy();
   strategy.setLimit(10);
   policy.setPendingMessageLimitStrategy(strategy);
   PolicyMap pMap = new PolicyMap();
   pMap.setDefaultEntry(policy);

   answer.setDestinationPolicy(pMap);
   answer.addConnector(bindAddress);
   answer.setDeleteAllMessagesOnStartup(true);
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:21,代碼來源:AdvisoryTests.java

示例7: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected BrokerService createBroker() throws Exception {
   BrokerService broker = super.createBroker();
   PolicyEntry policy = new PolicyEntry();

   AbortSlowAckConsumerStrategy strategy = new AbortSlowAckConsumerStrategy();
   strategy.setAbortConnection(abortConnection);
   strategy.setCheckPeriod(checkPeriod);
   strategy.setMaxSlowDuration(maxSlowDuration);
   strategy.setMaxTimeSinceLastAck(maxTimeSinceLastAck);

   policy.setSlowConsumerStrategy(strategy);
   policy.setQueuePrefetch(10);
   policy.setTopicPrefetch(10);
   PolicyMap pMap = new PolicyMap();
   pMap.setDefaultEntry(policy);
   broker.setDestinationPolicy(pMap);
   return broker;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:20,代碼來源:AbortSlowAckConsumer1Test.java

示例8: setUp

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected void setUp() throws Exception {
   broker = new BrokerService();
   broker.setPersistent(false);

   // workaround is to ensure sufficient dispatch buffer for the destination
   PolicyMap policyMap = new PolicyMap();
   PolicyEntry defaultPolicy = new PolicyEntry();
   defaultPolicy.setMaxPageSize(testSize);
   policyMap.setDefaultEntry(defaultPolicy);
   broker.setDestinationPolicy(policyMap);
   broker.start();

   super.setUp();
   this.producerConnection = this.createConnection();
   this.consumerConnection = this.createConnection();
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:18,代碼來源:DiscriminatingConsumerLoadTest.java

示例9: startBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
private void startBroker(boolean deleteMessages) throws Exception {
   broker = new BrokerService();
   broker.setBrokerName("test-broker");

   if (deleteMessages) {
      broker.setDeleteAllMessagesOnStartup(true);
   }
   setDefaultPersistenceAdapter(broker);

     /* use maxPageSize policy in place of always pulling from the broker in maxRows chunks
     if (broker.getPersistenceAdapter() instanceof JDBCPersistenceAdapter) {
         ((JDBCPersistenceAdapter)broker.getPersistenceAdapter()).setMaxRows(5000);
     }*/

   PolicyMap policyMap = new PolicyMap();
   PolicyEntry defaultEntry = new PolicyEntry();
   defaultEntry.setMaxPageSize(5000);
   policyMap.setDefaultEntry(defaultEntry);
   broker.setDestinationPolicy(policyMap);

   broker.start();
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:23,代碼來源:DurableSubscriptionSelectorTest.java

示例10: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected BrokerService createBroker() throws Exception {
   BrokerService service = new BrokerService();
   service.setDeleteAllMessagesOnStartup(true);

   service.setUseJmx(false);

   service.getSystemUsage().getStoreUsage().setLimit(200 * 1024);

   // allow destination to use 50% of store, leaving 50% for DLQ.
   PolicyMap policyMap = new PolicyMap();
   PolicyEntry policy = new PolicyEntry();
   policy.setStoreUsageHighWaterMark(50);
   policyMap.put(queueDest, policy);
   policyMap.put(topicDest, policy);
   service.setDestinationPolicy(policyMap);

   connector = service.addConnector("tcp://localhost:0");
   return service;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:21,代碼來源:PerDestinationStoreLimitTest.java

示例11: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
protected BrokerService createBroker() throws Exception {
   BrokerService brokerService = new BrokerService();
   brokerService.setEnableStatistics(false);
   brokerService.addConnector("tcp://0.0.0.0:0");
   brokerService.setDeleteAllMessagesOnStartup(true);

   PolicyEntry policy = new PolicyEntry();
   policy.setPrioritizedMessages(true);
   policy.setMaxPageSize(500);

   PolicyMap policyMap = new PolicyMap();
   policyMap.setDefaultEntry(policy);
   brokerService.setDestinationPolicy(policyMap);
   setDefaultPersistenceAdapter(brokerService);

   return brokerService;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:18,代碼來源:ConcurrentProducerQueueConsumerTest.java

示例12: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected BrokerService createBroker() throws Exception {
   BrokerService broker = super.createBroker();

   PolicyEntry policy = new PolicyEntry();
   DeadLetterStrategy strategy = new IndividualDeadLetterStrategy();
   strategy.setProcessNonPersistent(true);
   policy.setDeadLetterStrategy(strategy);

   PolicyMap pMap = new PolicyMap();
   pMap.setDefaultEntry(policy);

   broker.setDestinationPolicy(pMap);

   return broker;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:17,代碼來源:IndividualDeadLetterTest.java

示例13: startBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Before
public void startBroker() throws Exception {
	brokerService = new BrokerService();
	brokerService.setPersistent(false);
	brokerService.setUseJmx(true);
	brokerService.addConnector("tcp://localhost:61616");

	PolicyEntry entry = new PolicyEntry();
	entry.setPendingMessageLimitStrategy(new ConstantPendingMessageLimitStrategy() {
		@Override
		public int getLimit() {
			return 0;
		}
	});
	PolicyMap map = new PolicyMap();
	map.setDefaultEntry(entry);
	brokerService.setDestinationPolicy(map);
	brokerService.start();
	brokerService.waitUntilStarted();

	activeMQJmxMonitor = new ActiveMQJmxMonitor("service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi", "localhost", null);
}
 
開發者ID:art-licis,項目名稱:activemq-jmx-monitor,代碼行數:23,代碼來源:ActiveMQJmxMonitorTest.java

示例14: startBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Before
public void startBroker() throws Exception {
   brokerService = new BrokerService();
   brokerService.setDeleteAllMessagesOnStartup(true);
   brokerService.setBrokerName(brokerName);
   PolicyMap policyMap = new PolicyMap();
   PolicyEntry defaultEntry = new PolicyEntry();
   defaultEntry.setExpireMessagesPeriod(5000);
   policyMap.setDefaultEntry(defaultEntry);
   brokerService.setDestinationPolicy(policyMap);
   brokerService.start();
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:13,代碼來源:DurableSubscriptionHangTestCase.java

示例15: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected BrokerService createBroker() throws Exception {
   BrokerService answer = super.createBroker();
   PolicyMap policyMap = new PolicyMap();
   PolicyEntry defaultEntry = new PolicyEntry();
   // ensure prefetch is exact. only delivery next when current is acked
   defaultEntry.setUsePrefetchExtension(false);
   policyMap.setDefaultEntry(defaultEntry);
   answer.setDestinationPolicy(policyMap);
   return answer;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:12,代碼來源:OnePrefetchAsyncConsumerTest.java


注:本文中的org.apache.activemq.broker.BrokerService.setDestinationPolicy方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。