/* */ #include "RealtimeCommand.h" bool RealtimeCommand::execute() { setStatusRealtime(); _e->noWait = true; try { return executeInternal(); } catch(Exception* e) { _requestGroup->getSegmentMan()->errors++; bool r = handleException(e); delete e; return r; } }