source: trunk/src/main/java/omq/client/annotation/AsyncMethod.java @ 83

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

Objectmq converted to maven project

File size: 419 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 Asynchronous.
10 *
11 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
12 *
13 */
14
15@Retention(RetentionPolicy.RUNTIME)
16@Target(ElementType.METHOD)
17public @interface AsyncMethod {
18}
Note: See TracBrowser for help on using the repository browser.