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

Impala::Core::VideoJob::ServerProxy::ServerProxy ( CString  socketName,
CString  passwordFile,
int  requestIntervalSec 
) [inline]

Definition at line 32 of file ServerProxy.h.

References Impala::atol(), ILOG_ERROR, and Init().

00033     {
00034         int colonPos = socketName.find(":");
00035         if (colonPos <= 0)
00036         {
00037             ILOG_ERROR("Not a valid server address (port number is missing): "
00038                        << socketName);
00039             return;
00040         }
00041         Init(socketName.substr(0, colonPos),
00042              atol(socketName.substr(colonPos + 1)),
00043              passwordFile, requestIntervalSec);
00044     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:42 2011 for ImpalaSrc by  doxygen 1.5.1