Last active
August 29, 2015 14:11
-
-
Save steppat/bf2289e9c7f8f0ff5421 to your computer and use it in GitHub Desktop.
exemplo composite queues com ActiveMQ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- adicione abaixo do elemento broker --> | |
<destinationInterceptors> | |
<virtualDestinationInterceptor> | |
<virtualDestinations> | |
<compositeQueue name="COMP.PEDIDOS"> | |
<forwardTo> | |
<filteredDestination selector="formato = 'ebook'" queue="COMP.GERADOR"/> | |
<queue physicalName="COMP.FINANCEIRO" /> | |
<topic physicalName="COMP.NOTIFICACOES" /> | |
</forwardTo> | |
</compositeQueue> | |
</virtualDestinations> | |
</virtualDestinationInterceptor> | |
</destinationInterceptors> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment