source: branches/objectmq-1.0/test/test2/Mobile.java @ 33

Last change on this file since 33 was 33, checked in by amoreno, 11 years ago

new release version

File size: 360 bytes
Line 
1package test2;
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.