- Timestamp:
- 10/15/13 13:21:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/supervisor/src/main/java/omq/common/broker/RemoteBroker.java
r92 r103 8 8 import omq.client.annotation.SyncMethod; 9 9 import omq.exception.RemoteException; 10 import omq.exception.RetryException; 10 11 11 12 public interface RemoteBroker extends Remote { … … 19 20 20 21 @SyncMethod(retry = 1, timeout = 1000) 21 public boolean hasObject(String reference); 22 public boolean hasObject(String reference) throws RetryException; 23 24 @SyncMethod(retry = 1, timeout = 1000) 25 public HasObject hasObjectInfo(String reference) throws RetryException; 22 26 23 27 }
Note: See TracChangeset
for help on using the changeset viewer.