示例#1
0
EventLoopImpl::EventLoopImpl(PollType poll_type)
: poll_(createIOPoll(poll_type))
, stop_loop_(false)
, thread_id_()
, timer_mgr_(new TimerManager(this))
{
    
}
示例#2
0
EventLoop::Impl::Impl(PollType poll_type)
: poll_(createIOPoll(poll_type))
, timer_mgr_(new TimerManager(this))
{
    KM_SetObjKey("EventLoop");
}