| | |
| | | } |
| | | |
| | | @Bean |
| | | Binding bindingExchangeMessage(Queue kidgrowQueue, TopicExchange exchange) { |
| | | return BindingBuilder.bind(kidgrowQueue).to(exchange).with(routingKeyName); |
| | | Binding bindingExchangeMessage(TopicExchange exchange) { |
| | | return BindingBuilder.bind(KidgrowQueue()).to(exchange).with(routingKeyName); |
| | | } |
| | | |
| | | @Bean |
| | | public Queue AIEvaluation() { |
| | | return new Queue("AIEvaluation"); |
| | | } |
| | | |
| | | @Bean |
| | | Binding bindingExchangeAIEvaluation(TopicExchange exchange) { |
| | | return BindingBuilder.bind(AIEvaluation()).to(exchange).with(routingKeyName); |
| | | } |
| | | |
| | | @Bean |
| | | public Queue AdvancedEvaluation() { |
| | | return new Queue("AdvancedEvaluation"); |
| | | } |
| | | |
| | | @Bean |
| | | Binding bindingExchangeAdvancedEvaluation(TopicExchange exchange) { |
| | | return BindingBuilder.bind(AdvancedEvaluation()).to(exchange).with(routingKeyName); |
| | | } |
| | | } |