source: branches/supervisor/src/main/java/omq/common/broker/RemoteBroker.java @ 92

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

TODO: delete in supervisor
check the code

File size: 641 bytes
RevLine 
[91]1package omq.common.broker;
2
3import java.io.IOException;
[92]4import java.util.Properties;
[91]5import java.util.Set;
6
7import omq.Remote;
[92]8import omq.client.annotation.SyncMethod;
[91]9import omq.exception.RemoteException;
10
11public interface RemoteBroker extends Remote {
12        public Set<String> getRemoteObjects();
13
[92]14        public void spawnObject(String reference, String className, Properties env) throws Exception;
[91]15
[92]16        public void spawnObject(String reference, String className) throws Exception;
17
[91]18        public void deleteObject(String reference) throws RemoteException, IOException;
19
[92]20        @SyncMethod(retry = 1, timeout = 1000)
21        public boolean hasObject(String reference);
[91]22
23}
Note: See TracBrowser for help on using the repository browser.