//File: CosEventComm.idl //Part of the Event Service #ifndef _COS_EVENT_COMM_IDL_ #define _COS_EVENT_COMM_IDL_ #pragma prefix "omg.org" #if defined(CORBA_E_COMPACT) module CosEventComm { # ifndef _PRE_3_0_COMPILER_ typeprefix "omg.org"; # endif // _PRE_3_0_COMPILER_ exception Disconnected{}; interface PushConsumer { void push (in any data) raises(Disconnected); void disconnect_push_consumer(); }; interface PushSupplier { void disconnect_push_supplier(); }; }; #endif /* defined(CORBA_E_COMPACT) */ #endif /* ifndef _COS_EVENT_COMM_IDL_ */