zi_lib 并发示例
谁能向我解释如何在类中使用 zi_lib 并发性?
Can anyone explain to me how to use zi_lib concurrency with classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能向我解释如何在类中使用 zi_lib 并发性?
Can anyone explain to me how to use zi_lib concurrency with classes?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
中的示例
您可以查看https://github.com/zlateski/ zi_lib/tree/master/zi/concurrency/test
请注意,您不必使用 zi::run_fn,这是向后兼容的东西,您可以说:
zi::thread t( zi::bind( function_pointer, arg1, arg2, ... ) );
t.start();
t.join();
与 zi::task_manager::simple 或 zi::task_manager::deque 相同。
该测试有很多关于如何使用同步类/函数的示例
You can look at the examples in
https://github.com/zlateski/zi_lib/tree/master/zi/concurrency/test
note that you don't have to use zi::run_fn, it's a backwards compatibility thing, you can say:
zi::thread t( zi::bind( function_pointer, arg1, arg2, ... ) );
t.start();
t.join();
same thing with the zi::task_manager::simple or zi::task_manager::deque.
the test have bunch of examples of how to use the synchronization classes/functions