mirror of
https://github.com/apache/activemq.git
synced 2025-02-07 10:38:58 +00:00
40a7d3b6ac
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@356304 13f79535-47bb-0310-9956-ffa450edef68
22 lines
511 B
C#
Executable File
22 lines
511 B
C#
Executable File
using System;
|
|
|
|
namespace ActiveMQ
|
|
{
|
|
/// <summary>
|
|
/// Summary description for ActiveMQQueue.
|
|
/// </summary>
|
|
public class ActiveMQQueue : ActiveMQDestination {
|
|
public ActiveMQQueue() : base(){}
|
|
public ActiveMQQueue(String name) : base(name){}
|
|
public String getQueueName() {
|
|
return base.getPhysicalName();
|
|
}
|
|
public override int getDestinationType() {
|
|
return ACTIVEMQ_QUEUE;
|
|
}
|
|
|
|
public override ActiveMQDestination createDestination(String name) {
|
|
return new ActiveMQQueue(name);
|
|
}
|
|
}
|
|
} |