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.
关于扭曲电抗器的两个简单问题:
有没有办法在调度任务时明确分配优先级?
是否可以检查反应堆以列出所有待处理的任务?
不,reactor 不实现基于优先级的调度;它只是按照事件从多路复用/定时机制返回的任何顺序运行事件,具体取决于特定的反应器实现(不同的反应器略有不同)。
在反应器中实现调度或公平排队 API 将是一个很棒的补充,但这将是一项不平凡的工作。