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

String Impala::Core::IDash::Client::StatusJob ( CString  baseUri,
CString  jobId 
) [inline]

Definition at line 87 of file Client.h.

References ILOG_ERROR, IsConnected(), mChannelProxy, and Impala::Util::ChannelProxy::Send().

00088     {
00089         if (!IsConnected())
00090             return "ERROR: 500: Not connected";
00091 
00092         String request = "StatusJob:job=" + jobId + ";";
00093         String response = mChannelProxy->Send(request);
00094         if (response.substr(0, 14) == "JobStatus:job=")
00095         {
00096             String res = response.substr(14);
00097             return res;
00098         }
00099         ILOG_ERROR("StatusJob failed: " << response);
00100             
00101         return response;
00102     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:12:43 2010 for ImpalaSrc by  doxygen 1.5.1