source: branches/objectmq_old/test/multiProcessTest/Number.java @ 50

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

Exception test revised.
Broker.lookup does not need the casting
GsonImp? arguments problem solved
MultiProcessTest? added

File size: 308 bytes
Line 
1package multiProcessTest;
2
3import omq.Remote;
4import omq.client.annotation.RemoteInterface;
5import omq.client.annotation.SyncMethod;
6
7@RemoteInterface
8public 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.