org.reactivecommons.async.kafka.annotations.EnableDomainEventBus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-kafka-starter Show documentation
Show all versions of async-kafka-starter Show documentation
Abstract your broker with semantic async messages
package org.reactivecommons.async.kafka.annotations;
import org.reactivecommons.async.kafka.config.RCKafkaConfig;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Documented
@Import(RCKafkaConfig.class)
@Configuration
public @interface EnableDomainEventBus {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy