silentbalanceyh/vertx-zero

View on GitHub
vertx-gaia/vertx-co/src/main/environment/io/vertx/up/annotations/Adjust.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.vertx.up.annotations;

import io.vertx.up.eon.KWeb;

import java.lang.annotation.*;

/**
 * EndPoint api order for Event object, the default should be
 * EVENT order value.
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Adjust {
    /**
     * Annotated on Api method only
     */
    int value() default KWeb.ORDER.EVENT;
}