Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

virtual void Impala::Core::IDash::Server::DeleteCases ( char *  buf,
int  len,
int  bufSize,
CString  conn,
int  port 
) [inline, protected, virtual]

Definition at line 247 of file Server.h.

References Impala::Util::ChannelServer::ConnectionDescr(), ILOG_ERROR, ILOG_INFO, Impala::Core::VideoJob::ServerProxy::IsConnected(), mJobMap, mJobServer, and Impala::Core::VideoJob::ServerProxy::ScheduleJob().

Referenced by AcceptRequest().

00248     {
00249         String curCon = ConnectionDescr();
00250         ILOG_INFO("DeleteCases from " << curCon);
00251 
00252         if (!mJobServer->IsConnected())
00253         {
00254             ILOG_ERROR("Cannot do delete: No connection to jobserver");
00255             return;
00256         }
00257 
00258         String cmdLine = "do_clean_vds; do_clean_annotator";
00259         int serverJobId = mJobServer->ScheduleJob(cmdLine, 0);
00260         ILOG_INFO("Scheduled job: serverJobId=" << serverJobId <<
00261                   ", cmdLine=" << cmdLine);
00262         mJobMap.Clear();
00263     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:50 2011 for ImpalaSrc by  doxygen 1.5.1