00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _strict_policy_callback_impl_hh
00019 #define _strict_policy_callback_impl_hh
00020
00021 #include "BasicTaskCallbackS.h"
00022 #include "StrictPolicyC.h"
00023
00024
00025
00026
00027
00028
00029
00030 class StrictPolicyCallbackImpl :
00031 public virtual POA_Qosket::StrictPolicy::StrictPolicyCallback
00032 {
00033
00034 public:
00035
00036
00037
00038
00039
00040
00041 StrictPolicyCallbackImpl(BrokerPolicies::StrictPolicy_ptr sp);
00042
00043
00044
00045
00046 virtual ~StrictPolicyCallbackImpl(void);
00047
00048
00049
00050
00051
00052
00053
00054 virtual void sendMessage(const char *msg)
00055 throw (CORBA::SystemException);
00056
00057
00058 virtual void SetPriorityOf(const char *task_name, CORBA::Short priority)
00059 throw (CORBA::SystemException);
00060
00061
00062 virtual CORBA::Short GetPriorityOf(const char *task_name)
00063 throw (CORBA::SystemException);
00064
00065 protected:
00066
00067
00068
00069
00070 CORBA::ORB_ptr spci_ORB;
00071
00072
00073
00074
00075 BrokerPolicies::StrictPolicy_var spci_Policy;
00076
00077 };
00078
00079 #endif