source: trunk/src/test/java/multiThreadTest/Mobile.java @ 44

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

Objectmq converted to maven project

File size: 370 bytes
Line 
1package multiThreadTest;
2
3import java.util.List;
4
5import omq.Remote;
6import omq.client.annotation.AsyncMethod;
7import omq.client.annotation.RemoteInterface;
8import omq.client.annotation.SyncMethod;
9
10@RemoteInterface
11public interface Mobile extends Remote {
12        @AsyncMethod
13        public void sendMessage(String message);
14       
15        @SyncMethod
16        public List<String> getMessages();
17       
18       
19}
Note: See TracBrowser for help on using the repository browser.