00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4WatchRunnable.h"
00017
00018 #include "Go4Log/TGo4Log.h"
00019 #include "Go4TaskHandler/TGo4ClientStatus.h"
00020
00021 const UInt_t TGo4WatchRunnable::fguWATCHINTERVAL=5000;
00022
00023 TGo4WatchRunnable::TGo4WatchRunnable(const char* name, TGo4ExampleClient* cli)
00024 : TGo4Runnable(name,cli)
00025 {
00026 TRACE((15,"TGo4WatchRunnable::TGo4WatchRunnable(Text_t*,TGo4ExampleClient*) constructor",__LINE__, __FILE__));
00027 fxApplication=cli->GetApplication();
00028 }
00029
00030 TGo4WatchRunnable::~TGo4WatchRunnable()
00031 {
00032 TRACE((15,"TGo4WatchRunnable::~TGo4WatchRunnable() destructor",__LINE__, __FILE__));
00033
00034 }
00035
00036 Int_t TGo4WatchRunnable::Run(void*)
00037 {
00038 TRACE((12,"TGo4WatchRunnable::Run()",__LINE__, __FILE__));
00039 TGo4ClientTask* cli= dynamic_cast<TGo4ClientTask*> (fxManager);
00040 if(cli)
00041 {
00042 cli->UpdateStatusBuffer();
00043 cli->SendStatusBuffer();
00044
00045
00046
00047 if(fxApplication)
00048 {
00049 cli->SendStatusMessage(1,kTRUE,"Application %s of client %s has been watched",
00050 fxApplication->GetName(),
00051 cli->GetName());
00052
00053
00054 }
00055 }
00056 TGo4Thread::Sleep(fguWATCHINTERVAL);
00057 return 0;
00058 }
00059
00060