同步操作将从 libhv/libhv 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/** EventLoopThreadPool_test.cpp** @build: make evpp**/#include "hv.h"#include "EventLoopThreadPool.h"using namespace hv;static void onTimer(TimerID timerID, int n) {printf("tid=%ld timerID=%lu time=%lus n=%d\n", hv_gettid(), (unsigned long)timerID, (unsigned long)time(NULL), n);}int main(int argc, char* argv[]) {HV_MEMCHECK;hlog_set_level(LOG_LEVEL_DEBUG);printf("main tid=%ld\n", hv_gettid());EventLoopThreadPool loop_threads(4);loop_threads.start(true);int thread_num = loop_threads.threadNum();for (int i = 0; i < thread_num; ++i) {EventLoopPtr loop = loop_threads.nextLoop();printf("worker[%d] tid=%ld\n", i, loop->tid());loop->runInLoop([loop](){// runEvery 1sloop->setInterval(1000, std::bind(onTimer, std::placeholders::_1, 100));});loop->queueInLoop([](){printf("queueInLoop tid=%ld\n", hv_gettid());});loop->runInLoop([](){printf("runInLoop tid=%ld\n", hv_gettid());});}// runAfter 10sloop_threads.loop()->setTimeout(10000, [&loop_threads](TimerID timerID){loop_threads.stop(false);});// wait loop_threads exitloop_threads.join();return 0;}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。