iPhone 上的 kqueue ?
我正在将 Linux 服务器移植到 ios。它是单线程、事件驱动的设计 它在 OSX 上使用 kqueue 来处理套接字和其他事件。有什么东西吗 ios 上类似吗?
谢谢!
I am porting a linux server to ios. It is a single threaded, event driven design
that uses kqueue on OSX to handle sockets and other events. Is there something
similar on ios?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 CoreFoundation。 CFRunLoop 可以为您运行事件循环,其源包括文件描述符和套接字。
You could try using CoreFoundation.
CFRunLoop
can run an event loop for you, with sources including file descriptors and sockets.