Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个套接字并且有人向它发送了我尚未处理的数据 via read(),现在我ev_io为它创建了一个观察者并运行它,回调会触发吗?
read()
ev_io
我不知道你的问题的答案,因为我从未使用过libev. 但我可以建议在没有这些知识的情况下,您可以尝试模拟场景并看看会发生什么。:-)
libev
它是水平触发的,而不是边缘触发的,因此回调将快速触发,直到读取所有待处理的数据。