FACT++  1.0
void StateMachineImp::PrintListOfAllowedEvents ( std::ostream &  out)

Call for each event in fListEvents its Print function with the given stream if it is an allowed event in the current state.

Parameters
outostream to which the output should be redirected

Definition at line 420 of file StateMachineImp.cc.

References fCurrentState, fListOfEvents, and fMutexEvt.

Referenced by LocalControl< ConsoleStream >::Process().

421 {
422  const lock_guard<mutex> guard(fMutexEvt);
423 
424  for (vector<EventImp*>::const_iterator c=fListOfEvents.begin(); c!=fListOfEvents.end(); c++)
425  if ((*c)->IsStateAllowed(fCurrentState))
426  (*c)->Print(out, true);
427 }
int fCurrentState
Name of the state-machine / server (e.g. DRIVE)
std::vector< EventImp * > fListOfEvents
std::mutex fMutexEvt
Mutex to ensure thread-safe access to the command fifo.

+ Here is the caller graph for this function: