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

com.lmax.disruptor.spring.boot.annotation.EventRule Maven / Gradle / Ivy

There is a newer version: 1.0.2.RELEASE
Show newest version
package com.lmax.disruptor.spring.boot.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented	
@Inherited		
public @interface EventRule {
	
	/**
	 * Ant风格的事件分发规则表达式,格式为:/event/tags/keys,如:/Event-DC-Output/TagA-Output/**
	 */
	String value() default "*";
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy