00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #include "TGo4ConnectorRunnable.h" 00017 00018 #include "TGo4Log.h" 00019 #include "TGo4Thread.h" 00020 #include "TGo4ServerTask.h" 00021 #include "TGo4TaskManager.h" 00022 00023 TGo4ConnectorRunnable::TGo4ConnectorRunnable(const char* name, TGo4ServerTask* man) 00024 :TGo4Runnable(name,man) 00025 { 00026 fxTaskManager=man->GetTaskManager(); 00027 } 00028 00029 TGo4ConnectorRunnable::~TGo4ConnectorRunnable() 00030 { 00031 } 00032 00033 Int_t TGo4ConnectorRunnable::Run(void* ptr) 00034 { 00035 // create new taskhandler and connect server to client: 00036 Int_t rev= fxTaskManager->ServeClient(); 00037 if(rev< -1) 00038 { 00039 //cout <<"TGo4ConnectorRunnable::Run sees rev="<<rev << endl; 00040 fxGo4Thread->Stop(); // stop runnable for termination 00041 } 00042 else 00043 { 00044 // go on 00045 } 00046 return rev; 00047 } 00048 00049 //----------------------------END OF GO4 SOURCE FILE ---------------------