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

String Impala::Core::IDash::Client::GetJobs ( CString  baseUri  )  [inline]

Definition at line 69 of file Client.h.

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

00070     {
00071         if (!IsConnected())
00072             return "ERROR: 500: Not connected";
00073 
00074         String request = "GetJobs:baseUri=" + baseUri + ";";
00075         String response = mChannelProxy->Send(request);
00076         if (response.substr(0, 5) == "Jobs:")
00077         {
00078             String res = response.substr(5);
00079             return res;
00080         }
00081         ILOG_ERROR("GetJobs failed: " << response);
00082             
00083         return response;
00084     }

Here is the call graph for this function:


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