Example #1
0
        public ITemporaryTopic CreateTemporaryTopic()
        {
            ActiveMQTempTopic answer = new ActiveMQTempTopic(Connection.CreateTemporaryDestinationName());

            CreateTemporaryDestination(answer);
            return(answer);
        }
Example #2
0
        public ITemporaryQueue CreateTemporaryQueue()
        {
            ActiveMQTempQueue answer = new ActiveMQTempQueue(Connection.CreateTemporaryDestinationName());

            CreateTemporaryDestination(answer);
            return(answer);
        }