source:
trunk/src/main/java/omq/client/annotation/MultiMethod.java
@
65
Last change on this file since 65 was 54, checked in by stoda, 11 years ago | |
---|---|
File size: 317 bytes |
Line | |
---|---|
1 | package omq.client.annotation; |
2 | |
3 | import java.lang.annotation.ElementType; |
4 | import java.lang.annotation.Retention; |
5 | import java.lang.annotation.RetentionPolicy; |
6 | import java.lang.annotation.Target; |
7 | |
8 | @Retention(RetentionPolicy.RUNTIME) |
9 | @Target(ElementType.METHOD) |
10 | public @interface MultiMethod { |
11 | int waitNum() default 1; |
12 | } |
Note: See TracBrowser
for help on using the repository browser.