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 SimpleQueueTest extends SimpleTopicTest{ 27 28 protected Destination createDestination(Session s,String destinationName) throws JMSException { 29 return s.createQueue(destinationName); 30 } 31 32 } 33 | Popular Tags |