Exemplo n.º 1
0
 public static ActiveMQTopic GetFullAdvisoryTopic(ActiveMQDestination destination)
 {
     String name = FULL_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
             + destination.PhysicalName;
     return new ActiveMQTopic(name);
 }
Exemplo n.º 2
0
 public static ActiveMQTopic GetFastProducerAdvisoryTopic(ActiveMQDestination destination)
 {
     String name = FAST_PRODUCER_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
             + destination.PhysicalName;
     return new ActiveMQTopic(name);
 }
Exemplo n.º 3
0
 public static ActiveMQTopic GetMessageDLQdAdvisoryTopic(ActiveMQDestination destination)
 {
     String name = MESSAGE_DLQ_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
             + destination.PhysicalName;
     return new ActiveMQTopic(name);
 }
Exemplo n.º 4
0
 public static ActiveMQTopic GetSlowConsumerAdvisoryTopic(ActiveMQDestination destination)
 {
     String name = SLOW_CONSUMER_TOPIC_PREFIX + destination.GetDestinationTypeAsString() + "."
             + destination.PhysicalName;
     return new ActiveMQTopic(name);
 }