[
https://issues.apache.org/activemq/browse/AMQNET-129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47932#action_47932
]
Timothy Bish commented on AMQNET-129:
-------------------------------------
Deleting destination could also be accomplished from the client code. The Java
and C++ clients have methods in their implementation of Connection that destroy
a destination. A destination can be destroyed by sending a DestinationInfo
command to the broker with similar to the following:
{noformat}
commands::DestinationInfo command;
command.setConnectionId( connectionInfo );
command.setOperationType( DESTINATION_REMOVE_OPERATION );
command.setDestination( destination );
syncRequest( command );
{noformat}
A similar method could be added Connection to give the user the option to do
this if they so desired.
> Support for deleting queues.
> ----------------------------
>
> Key: AMQNET-129
> URL: https://issues.apache.org/activemq/browse/AMQNET-129
> Project: ActiveMQ .Net
> Issue Type: New Feature
> Components: NMX
> Reporter: Petr Postulka
> Assignee: Jim Gomes
> Fix For: 1.2
>
>
> Add support for deleting queues/topics. Temporary queues and topics are
> automatically deleted, but normal queues and topics are not removed. An
> administrative function should support deletion of these queues and topics.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.