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

std::string Impala::Application::TagsLife::RemoteRetriever::requestFile ( std::string  url,
bool  fromCache = true,
bool  toCache = true,
std::string  filename = "" 
) [inline]

Definition at line 70 of file RemoteRetriever.h.

References requestFile().

Referenced by requestFile().

00070                                                                                                               {
00071                 //if(filename == "" || !mUseCache) fromCache = toCache = false;
00072         RemoteFileRetriever retriever = RemoteFileRetriever(url, fromCache, toCache, filename);
00073 #ifdef USE_BOOST_THREAD
00074 #ifdef USE_BOOST_THREADPOOL
00075         threadpool.schedule(retriever);
00076 #else
00077         boost::thread work(retriever);
00078 #endif
00079 #else
00080         retriever();
00081 #endif
00082         return filename;
00083     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:51:30 2010 for ImpalaSrc by  doxygen 1.5.1