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

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

            CreateTemporaryDestination(answer);
            return(answer);
        }