source:
branches/objectmq_old/test/multiProcessTest/Number.java
Last change on this file was 39, checked in by stoda, 11 years ago | |
---|---|
File size: 308 bytes |
Line | |
---|---|
1 | package multiProcessTest; |
2 | |
3 | import omq.Remote; |
4 | import omq.client.annotation.RemoteInterface; |
5 | import omq.client.annotation.SyncMethod; |
6 | |
7 | @RemoteInterface |
8 | public interface Number extends Remote { |
9 | @SyncMethod(timeout = 1000) |
10 | public void setNumber(int x); |
11 | |
12 | @SyncMethod(timeout = 1000) |
13 | public int getNumer(); |
14 | } |
Note: See TracBrowser
for help on using the repository browser.