You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Timothy Bish (JIRA)" <ji...@apache.org> on 2008/12/08 15:04:05 UTC

[jira] Commented: (AMQNET-129) Support for deleting queues.

    [ 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.