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

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

Semaphores added and removed, ack error discovered and solutioned... Some tests added

Supervisor interface created and more things I'll do later...

TODO: supervisor!!

File size: 478 bytes
Line 
1package omq.common.broker;
2
3import java.io.IOException;
4import java.util.Set;
5
6import omq.Remote;
7import omq.exception.RemoteException;
8
9public interface RemoteBroker extends Remote {
10        public Set<String> getRemoteObjects();
11
12        public void spawnObject(String reference, String className, Class<?> parameterTypes, Object... args) throws Exception;
13
14        public void deleteObject(String reference) throws RemoteException, IOException;
15
16        public HasObject hasObject(String reference);
17
18}
Note: See TracBrowser for help on using the repository browser.