Repository: activemq-artemis Updated Branches: refs/heads/master ca7061464 -> 3e4d65e14
ARTEMIS-2006 Remove setDeadLetterAddress & setExpiryAddress from docs Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/523e86ce Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/523e86ce Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/523e86ce Branch: refs/heads/master Commit: 523e86ce9bb909514d4b3d4bc983ada2fd4ef877 Parents: ca70614 Author: Justin Bertram <[email protected]> Authored: Wed Aug 1 10:37:06 2018 -0500 Committer: Clebert Suconic <[email protected]> Committed: Thu Aug 2 10:34:11 2018 -0400 ---------------------------------------------------------------------- docs/user-manual/en/management.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/523e86ce/docs/user-manual/en/management.md ---------------------------------------------------------------------- diff --git a/docs/user-manual/en/management.md b/docs/user-manual/en/management.md index e27794c..82bf142 100644 --- a/docs/user-manual/en/management.md +++ b/docs/user-manual/en/management.md @@ -153,14 +153,12 @@ a given property.) Messages can be expired from a queue by using the `expireMessages()` method. If an expiry address is defined, messages will be sent to it, otherwise they - are discarded. The queue's expiry address can be set with the - `setExpiryAddress()` method. + are discarded. Messages can also be sent to a dead letter address with the `sendMessagesToDeadLetterAddress()` method. It returns the number of messages which are sent to the dead letter address. If a dead letter address is not - defined, message are removed from the queue and discarded. The queue's dead - letter address can be set with the `setDeadLetterAddress()` method. + defined, message are removed from the queue and discarded. Messages can also be moved from a queue to another queue by using the `moveMessages()` method.
