--- projects/cms/source/server/idl/iscream.idl 2000/11/21 21:12:41 1.8 +++ projects/cms/source/server/idl/iscream.idl 2001/03/13 19:14:04 1.17 @@ -2,7 +2,7 @@ // This class provides infomation about the CORBA // interface for the server side of the I-Scream system. // -// $Id: iscream.idl,v 1.8 2000/11/21 21:12:41 tdb Exp $ +// $Id: iscream.idl,v 1.17 2001/03/13 19:14:04 tdb Exp $ // module uk { module ac { module ukc { module iscream { module core { @@ -26,6 +26,7 @@ module uk { module ac { module ukc { module iscream { string getProperty(in string key); long long getLastModified(); string getFileList(); + void disconnect(); }; // The ConfigurationManager interface, provides a CORBA object that @@ -41,12 +42,36 @@ module uk { module ac { module ukc { module iscream { module filter { interface Filter { void receiveXML(in string xml); + string getHostName(); + string getUDPPort(); + string getTCPPort(); }; - interface FilterManager { - void register(in Filter filter); - }; + // end filter }; + + module client { + interface Client { + void receiveXML(in string xml); + }; + // end client + }; + + module clientinterface { + interface ClientInterface { + void receiveXML(in string xml); + }; + interface CorbaControlHandler { + boolean startData(); + boolean stopData(); + boolean setHostList(in string hostList); + void disconnect(); + }; + interface CorbaClientListener { + CorbaControlHandler connect(in client::Client client, in string name); + }; + // end clientinterface + }; -// end ac.uk.ukc.iscream -};};};}; \ No newline at end of file +// end uk.ac.ukc.iscream +};};};};