1 Star 0 Fork 31

manco1101 / libhv

forked from ithewei / libhv 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
EventLoop_test.cpp 985 Bytes
一键复制 编辑 原始数据 按行查看 历史
hewei.it 提交于 2021-01-24 12:23 . make evpp
/*
* EventLoop_test.cpp
*
* @build
* make libhv && sudo make install
* g++ -std=c++11 EventLoop_test.cpp -o EventLoop_test -I/usr/local/include/hv -lhv -lpthread
*
*/
#include "hv.h"
#include "EventLoop.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());
EventLoopPtr loop(new EventLoop);
// runEvery 1s
loop->setInterval(1000, std::bind(onTimer, std::placeholders::_1, 100));
// runAfter 10s
loop->setTimeout(10000, [&loop](TimerID timerID){
loop->stop();
});
loop->queueInLoop([](){
printf("queueInLoop tid=%ld\n", hv_gettid());
});
loop->runInLoop([](){
printf("runInLoop tid=%ld\n", hv_gettid());
});
// run until loop stopped
loop->run();
return 0;
}
C
1
https://gitee.com/manco1101/libhv.git
git@gitee.com:manco1101/libhv.git
manco1101
libhv
libhv
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891