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.
我有一个接收消息的队列,需要等待达到 1000 条消息才能处理它们。
所以我需要定期检查消息数量,当达到 1000 条时,从队列中读取所有消息。
但是根据我在文档中找到的内容,我只能设置一个回调函数,以便在消息到达时调用。
你知道我如何在 NodeJS 中做到这一点吗?