1 18 package org.apache.activemq.perf; 19 20 import javax.jms.Destination ; 21 import javax.jms.JMSException ; 22 import javax.jms.Session ; 23 26 public class TemporaryTopicMemoryAllocationTest extends MemoryAllocationTest{ 27 public TemporaryTopicMemoryAllocationTest(){ 28 super(); 29 } 31 32 protected Destination getDestination(Session session) throws JMSException { 33 return session.createTemporaryTopic(); 34 } 35 } 36 | Popular Tags |