如何使用libev在C ++中创建异步方法

时间:2013-03-12 11:54:00

标签: c++ asynchronous libev

我正在尝试使用libev在C ++中创建一个异步方法。如果需要,我可以传递一个回调方法作为参数。

例如

test();
printf("After test() method\n");

test()是一个异步方法,因此应在printf()完成执行之前执行下一个test()语句。

我尝试使用libev这个简单的例子:

void testCallback(struct ev_loop *loop, struct ev_io  *watcher, int revents)
{
    sleep(5);
    ev_io_stop(loop, watcher);
}

int test()
{
    struct ev_loop *loop = ev_default_loop(0);
    ev_io watch;

    ev_io_init(&watch, testCallback, 0, EV_READ);
    ev_io_start(loop, &watch);

    ev_run(loop, 0);

    return 0;
}

int main() {
    test();
    printf("After test() method");
    return 0;
}

在此示例中,printf在事件循环停止后执行。使用libev可以实现这种功能吗?我用谷歌搜索,但没有得到这种需要的例子。

1 个答案:

答案 0 :(得分:1)

从代码开始,应该在循环停止后执行printf。测试不是异步,而testCallback是异步的。你可能误解了逻辑。