template<class IdxT, class ElemT>
Definition at line 84 of file Cache.h. Referenced by Impala::Util::ChannelPool::Dump(). 00085 { 00086 std::ostringstream oss; 00087 oss << name << "Cache::Dump start" << std::endl; 00088 for (CacheConstIterator i=mQueue.begin() ; i!=mQueue.end() ; ++i) 00089 { 00090 oss << (*i).mIdx << " = " << (*i).mElem << std::endl; 00091 } 00092 oss << "Cache::Dump end" << std::endl; 00093 ILOG_INFO(oss.str()); 00094 }
|