Hello
I have the followind code
I can interpret this code like messages from queue "someQueue" will be delivered to exchange "someTopicExchange" with key "foo.*". I think it's wrong. How should I read this code?Code:Binding b = BindingBuilder.from(someQueue).to(someTopicExchange).with("foo.*");


Reply With Quote