de.otto.synapse.annotation.EnableMessageQueueReceiverEndpoints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-core Show documentation
Show all versions of synapse-core Show documentation
A library used at otto.de to implement Spring Boot based event-sourcing microservices.
package de.otto.synapse.annotation;
import de.otto.synapse.configuration.MessageQueueReceiverEndpointAutoConfiguration;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({
MessageQueueReceiverEndpointAutoConfiguration.class,
MessageQueueReceiverEndpointBeanRegistrar.class})
public @interface EnableMessageQueueReceiverEndpoints {
EnableMessageQueueReceiverEndpoint[] value();
}