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

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

            CreateTemporaryDestination(answer);
            return(answer);
        }