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