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


Java BrokerService.setDestinations方法代碼示例

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


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

示例1: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
private BrokerService createBroker(boolean deleteAllMessages, long expireMessagesPeriod) throws Exception {
   BrokerService broker = new BrokerService();
   broker.setBrokerName("localhost");
   broker.setDestinations(new ActiveMQDestination[]{destination});
   broker.setPersistenceAdapter(new MemoryPersistenceAdapter());

   PolicyEntry defaultPolicy = new PolicyEntry();
   if (useVMCursor) {
      defaultPolicy.setPendingQueuePolicy(new VMPendingQueueMessageStoragePolicy());
   }
   defaultPolicy.setExpireMessagesPeriod(expireMessagesPeriod);
   defaultPolicy.setMaxExpirePageSize(1200);
   PolicyMap policyMap = new PolicyMap();
   policyMap.setDefaultEntry(defaultPolicy);
   broker.setDestinationPolicy(policyMap);
   broker.setDeleteAllMessagesOnStartup(deleteAllMessages);
   broker.addConnector("tcp://localhost:0");
   broker.start();
   broker.waitUntilStarted();
   return broker;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:22,代碼來源:ExpiredMessagesTest.java

示例2: setUp

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected void setUp() throws Exception {
   maxSetupTime = 1000;
   super.setAutoFail(true);
   super.setUp();
   final String options = "?persistent=true&useJmx=false&deleteAllMessagesOnStartup=true";

   BrokerService brokerServiceA = createBroker(new URI(String.format("broker:(%s)/%s%s", BROKER_A_TRANSPORT_URL, BROKER_A, options)));
   brokerServiceA.setDestinationPolicy(buildPolicyMap());
   brokerServiceA.setDestinations(new ActiveMQDestination[]{queue});

   BrokerService brokerServiceB = createBroker(new URI(String.format("broker:(%s)/%s%s", BROKER_B_TRANSPORT_URL, BROKER_B, options)));
   brokerServiceB.setDestinationPolicy(buildPolicyMap());
   brokerServiceB.setDestinations(new ActiveMQDestination[]{queue});

   // bridge brokers to each other statically (static: discovery)
   bridgeBrokers(BROKER_A, BROKER_B);
   bridgeBrokers(BROKER_B, BROKER_A);

   startAllBrokers();
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:22,代碼來源:VirtualTopicNetworkClusterReactivationTest.java

示例3: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected BrokerService createBroker() throws Exception {
   BrokerService broker = super.createBroker();
   broker.setDestinations(new ActiveMQDestination[]{queue});
   broker.setSchedulePeriodForDestinationPurge(1000);
   broker.setMaxPurgedDestinationsPerSweep(1);
   PolicyEntry entry = new PolicyEntry();
   entry.setGcInactiveDestinations(true);
   entry.setInactiveTimeoutBeforeGC(3000);
   PolicyMap map = new PolicyMap();
   map.setDefaultEntry(entry);
   broker.setDestinationPolicy(map);
   return broker;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:15,代碼來源:DestinationGCTest.java

示例4: createBroker

import org.apache.activemq.broker.BrokerService; //導入方法依賴的package包/類
@Override
protected BrokerService createBroker() throws Exception {
   BrokerService broker = super.createBroker();
   broker.setDestinations(new ActiveMQDestination[]{sampleQueue, sampleTopic});
   return broker;
}
 
開發者ID:apache,項目名稱:activemq-artemis,代碼行數:7,代碼來源:DestinationListenerTest.java


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