00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef TAO_EC_CONSUMERCONTROL_H
00017 #define TAO_EC_CONSUMERCONTROL_H
00018
00019 #include "ace/pre.h"
00020 #include "ace/CORBA_macros.h"
00021
00022 #include "orbsvcs/Event/event_serv_export.h"
00023
00024 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00025 # pragma once
00026 #endif
00027
00028 #include "tao/orbconf.h"
00029
00030 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00031
00032 class TAO_EC_Event_Channel_Base;
00033 class TAO_EC_ProxyPushSupplier;
00034
00035 namespace CORBA
00036 {
00037 class Environment;
00038 class SystemException;
00039 }
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049 class TAO_RTEvent_Serv_Export TAO_EC_ConsumerControl
00050 {
00051 public:
00052
00053 TAO_EC_ConsumerControl (void);
00054
00055
00056 virtual ~TAO_EC_ConsumerControl (void);
00057
00058
00059
00060 virtual int activate (void);
00061 virtual int shutdown (void);
00062
00063
00064
00065
00066
00067
00068
00069 virtual void consumer_not_exist (TAO_EC_ProxyPushSupplier *proxy
00070 ACE_ENV_ARG_DECL);
00071
00072
00073
00074 virtual void system_exception (TAO_EC_ProxyPushSupplier *proxy,
00075 CORBA::SystemException &
00076 ACE_ENV_ARG_DECL);
00077 };
00078
00079 TAO_END_VERSIONED_NAMESPACE_DECL
00080
00081 #include "ace/post.h"
00082
00083 #endif