GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4TaskHandlerException.cxx
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
15
16#include "TGo4TaskHandler.h"
18
20{
21 fxDescription= "!!!-- Go4 TaskHandler Exception --!!!";
22 fxTaskHandler = taskhandler;
24 {
25 // o.k. we have a given taskhandler
26 fxThreadManager = fxTaskHandler->GetThreadManager();
27 }
28 else
29 {
30 // wrong call with zero pointer: dummy init of manager, will be checked in Handle()
31 fxThreadManager = nullptr;
32 }
33}
34
36{
37 fxDescription= "!!!-- Go4 TaskHandler Exception --!!!";
38 fxCaller = run;
39 if(fxCaller)
40 {
41 fxTaskHandler = fxCaller->GetTaskHandler();
42 }
43 else
44 {
45 fxTaskHandler = nullptr;
46 }
47
49 {
50 // o.k. we have a given taskhandler
51 fxThreadManager = fxTaskHandler->GetThreadManager();
52 }
53 else
54 {
55 // wrong call with zero pointer: dummy init of manager, will be checked in Handle()
56 fxThreadManager = nullptr;
57 }
58}
59
TString fxDescription
TGo4TaskHandlerRunnable * fxCaller
This is the abstract interface for all runnables associated with the taskhandler class.
This class is responsible for the interconnection of two tasks: provided are three communication chan...