当前位置: 首页>>代码示例>>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;未经允许,请勿转载。