source: branches/supervisor/src/main/java/omq/client/annotation/MultiMethod.java @ 104

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

MultiMethod? without numWait -> it depends on the timeout

File size: 410 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/**
9 * Annotation which indicates a method as Multi.
10 *
11 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
12 *
13 */
14@Retention(RetentionPolicy.RUNTIME)
15@Target(ElementType.METHOD)
16public @interface MultiMethod {
17}
Note: See TracBrowser for help on using the repository browser.