--- projects/cms/source/server/idl/iscream.idl 2000/11/20 18:55:07 1.5 +++ projects/cms/source/server/idl/iscream.idl 2001/02/03 00:44:28 1.13 @@ -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.5 2000/11/20 18:55:07 tdb Exp $ +// $Id: iscream.idl,v 1.13 2001/02/03 00:44:28 tdb Exp $ // module uk { module ac { module ukc { module iscream { module core { @@ -25,6 +25,7 @@ module uk { module ac { module ukc { module iscream { interface Configuration { string getProperty(in string key); long long getLastModified(); + string getFileList(); }; // The ConfigurationManager interface, provides a CORBA object that @@ -38,12 +39,37 @@ module uk { module ac { module ukc { module iscream { }; module filter { - interface FilterManager { - + interface Filter { + void receiveXML(in string xml); + string getHostName(); + string getUDPPort(); + string getTCPPort(); }; // end filter }; + + module client { + interface Client { + void receiveXML(in string xml); + }; + // end client + }; + + module clientinterface { + interface ClientInterface { + void receiveXML(in string xml); + }; + interface CorbaHandler { + boolean startData(); + boolean stopData(); + boolean setHostList(in string hostList); + }; + interface CorbaClientListener { + CorbaHandler connect(in string name, in client::Client client); + }; + // end clientinterface + }; -// end ac.uk.ukc.iscream -};};};}; \ No newline at end of file +// end uk.ac.ukc.iscream +};};};};