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