zi_lib 并发示例

发布于 2024-11-01 16:19:41 字数 32 浏览 1 评论 0原文

谁能向我解释如何在类中使用 zi_lib 并发性?

Can anyone explain to me how to use zi_lib concurrency with classes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鱼忆七猫命九 2024-11-08 16:19:41

中的示例

您可以查看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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文