source: trunk/src/main/java/omq/client/annotation/MultiMethod.java @ 54

Last change on this file since 54 was 54, checked in by stoda, 11 years ago

Adding @MultiMethod?
Broker is not a singleton.

File size: 317 bytes
Line 
1package omq.client.annotation;
2
3import java.lang.annotation.ElementType;
4import java.lang.annotation.Retention;
5import java.lang.annotation.RetentionPolicy;
6import java.lang.annotation.Target;
7
8@Retention(RetentionPolicy.RUNTIME)
9@Target(ElementType.METHOD)
10public @interface MultiMethod {
11        int waitNum() default 1;
12}
Note: See TracBrowser for help on using the repository browser.