source: branches/objectmq_old/test/multiThreadTest/Mobile.java @ 72

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

Stop broker working and unbind too.

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.