com.bybutter.sisyphus.middleware.amqp.AmqpTemplateFactory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sisyphus-amqp Show documentation
Show all versions of sisyphus-amqp Show documentation
Middleware for using AMQP in Sisyphus Project
package com.bybutter.sisyphus.middleware.amqp
import org.springframework.amqp.core.AmqpTemplate
import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer
interface AmqpTemplateFactory {
fun createTemplate(property: MessageQueueProperty): AmqpTemplate
fun createListenerContainer(property: MessageQueueProperty): SimpleMessageListenerContainer
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy