public ITemporaryTopic CreateTemporaryTopic() { ActiveMQTempTopic answer = new ActiveMQTempTopic(Connection.CreateTemporaryDestinationName()); CreateTemporaryDestination(answer); return(answer); }
public ITemporaryQueue CreateTemporaryQueue() { ActiveMQTempQueue answer = new ActiveMQTempQueue(Connection.CreateTemporaryDestinationName()); CreateTemporaryDestination(answer); return(answer); }