- Timestamp:
- 10/01/13 12:02:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/supervisor/src/main/java/omq/common/broker/RemoteBroker.java
r91 r92 2 2 3 3 import java.io.IOException; 4 import java.util.Properties; 4 5 import java.util.Set; 5 6 6 7 import omq.Remote; 8 import omq.client.annotation.SyncMethod; 7 9 import omq.exception.RemoteException; 8 10 … … 10 12 public Set<String> getRemoteObjects(); 11 13 12 public void spawnObject(String reference, String className, Class<?> parameterTypes, Object... args) throws Exception; 14 public void spawnObject(String reference, String className, Properties env) throws Exception; 15 16 public void spawnObject(String reference, String className) throws Exception; 13 17 14 18 public void deleteObject(String reference) throws RemoteException, IOException; 15 19 16 public HasObject hasObject(String reference); 20 @SyncMethod(retry = 1, timeout = 1000) 21 public boolean hasObject(String reference); 17 22 18 23 }
Note: See TracChangeset
for help on using the changeset viewer.