1 Star 0 Fork 31

oschina_binggo / libhv

forked from ithewei / libhv 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
EventLoopThreadPool_test.cpp 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
ithewei 提交于 2021-01-20 20:45 . filter-out *_test.c
/*
* EventLoopThreadPool_test.cpp
*
* @build
* make libhv && sudo make install
* g++ -std=c++11 EventLoopThreadPool_test.cpp -o EventLoopThreadPool_test -I/usr/local/include/hv -lhv -lpthread
*
*/
#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;
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 1s
loop->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 10s
loop_threads.loop()->setTimeout(10000, [&loop_threads](TimerID timerID){
loop_threads.stop(false);
});
// wait loop_threads exit
loop_threads.join();
return 0;
}
C++
1
https://gitee.com/lhch/libhv.git
git@gitee.com:lhch/libhv.git
lhch
libhv
libhv
master

搜索帮助