All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rocketmq.starter.annotation.EnableRocketMQ Maven / Gradle / Ivy

The newest version!
package org.rocketmq.starter.annotation;

import org.rocketmq.starter.configuration.RocketMQAutoConfiguration;
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;

/**
 * Annotation to enable a RocketMQ implementation.
 *
 * @author He Jialin
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(RocketMQAutoConfiguration.class)
public @interface EnableRocketMQ {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy