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

net.dongliu.prettypb.runtime.include.ProtoMethod Maven / Gradle / Ivy

The newest version!
package net.dongliu.prettypb.runtime.include;

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

/**
 * used to mark a method as proto rpc
 *
 * @author Dong Liu
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ProtoMethod {
    /**
     * the proto service rpc name
     * @return
     */
    String name();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy