コード例 #1
0
        public static ActiveMQTopic GetFullAdvisoryTopic(ActiveMQDestination destination)
        {
            String name = FULL_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
                          + destination.PhysicalName;

            return(new ActiveMQTopic(name));
        }
コード例 #2
0
        public static ActiveMQTopic GetFastProducerAdvisoryTopic(ActiveMQDestination destination)
        {
            String name = FAST_PRODUCER_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
                          + destination.PhysicalName;

            return(new ActiveMQTopic(name));
        }
コード例 #3
0
        public static ActiveMQTopic GetMessageDLQdAdvisoryTopic(ActiveMQDestination destination)
        {
            String name = MESSAGE_DLQ_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
                          + destination.PhysicalName;

            return(new ActiveMQTopic(name));
        }
コード例 #4
0
        public static ActiveMQTopic GetSlowConsumerAdvisoryTopic(ActiveMQDestination destination)
        {
            String name = SLOW_CONSUMER_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
                          + destination.PhysicalName;

            return(new ActiveMQTopic(name));
        }