Ignore:
Timestamp:
10/15/13 13:21:33 (11 years ago)
Author:
stoda
Message:

Supervisor done

TODO: revise supervisor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/supervisor/src/main/java/omq/common/broker/RemoteBroker.java

    r92 r103  
    88import omq.client.annotation.SyncMethod;
    99import omq.exception.RemoteException;
     10import omq.exception.RetryException;
    1011
    1112public interface RemoteBroker extends Remote {
     
    1920
    2021        @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;
    2226
    2327}
Note: See TracChangeset for help on using the changeset viewer.