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

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

Error detected: there should be only one thread listening to the multiexchange queue.
TODO: change this. Make refactor in the invocationthread. Change remotethreadpool to achieve this behavior.
AInvocationThread <- InvocationTHread

<- MultiInvocationTHread

File size: 693 bytes
Line 
1package omq.common.broker;
2
3import java.io.IOException;
4import java.util.Properties;
5import java.util.Set;
6
7import omq.Remote;
8import omq.exception.RemoteException;
9import omq.exception.RetryException;
10
11public interface RemoteBroker extends Remote {
12        public Set<String> getRemoteObjects();
13
14        public void spawnObject(String reference, String className, Properties env) throws Exception;
15
16        public void spawnObject(String reference, String className) throws Exception;
17
18        public void deleteObject(String reference) throws RemoteException, IOException;
19
20        public boolean hasObject(String reference) throws RetryException;
21
22        public HasObject hasObjectInfo(String reference) throws RetryException;
23
24}
Note: See TracBrowser for help on using the repository browser.