com.almende.eve.protocol.jsonrpc.annotation.NoReply Maven / Gradle / Ivy
The newest version!
package com.almende.eve.protocol.jsonrpc.annotation;
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;
/**
* An annotation that indicates that this method or all void methods in the
* class may be called as a notification, asynchronously, not expecting a reply.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.TYPE })
@Documented
public @interface NoReply {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy