hu.akarnokd.reactiverpc.RsRpc Maven / Gradle / Ivy
package hu.akarnokd.reactiverpc;
import java.lang.annotation.*;
/**
* Indicates a public method is a service with possible function name.
* Can be applied to incoming and outgoing service interfaces.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface RsRpc {
String name() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy