00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
#ifndef _EVENTCOMPONENT_IDL_
00023
#define _EVENTCOMPONENT_IDL_
00024
00025
#include <acscomponent.idl>
00026
#include <ACSErrTypeCommon.idl>
00027
#include <acsexmplFridge.idl>
00028
00029
#pragma prefix "alma"
00030
00031 module demo
00032 {
00036 interface SupplierComp :
ACS::ACSComponent
00037 {
00042
void sendEvents (in
short numEvents)
00043 raises (ACSErrTypeCommon::CouldntPerformActionEx);
00044
00050
void sendEventsSpecial (in
FRIDGE::FridgeControl::NestedFridgeEventSeq eventData)
00051 raises (ACSErrTypeCommon::CouldntPerformActionEx);
00052 };
00053
00054
00058 interface ConsumerComp :
ACS::ACSComponent
00059 {
00060 };
00061
00062 interface NCReceiver :
ACS::ACSComponent
00063 {
00064 };
00065
00066 interface NCPublisher :
ACS::ACSComponent
00067 {
00068
void publish(in string name)
00069 raises (ACSErrTypeCommon::CouldntPerformActionEx);
00070 };
00071
00072 };
00073
#endif