Java Executor,在队列底部/末尾添加新任务

发布于 2024-12-12 06:45:26 字数 54 浏览 0 评论 0原文

我希望有一个执行器可以选择是否将新任务添加到队列的顶部或底部。实现这一目标的最简单方法是什么?

I want to have an Executor with the possibility to choose whether new task is added at the top or at the bottom of the queue. What is the simplest way to achieve that?

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

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

发布评论

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

评论(1

晚风撩人 2024-12-19 06:45:26

我认为您可以通过使用 PriorityQeueue (或 PriorityBlockingQueue 根据您的需要)来实现此功能。

这些队列按照比较器的顺序处理任务。尽管此比较器在创建时会传递到队列,但您可以实现自定义比较器,该比较器具有自己的逻辑,可以决定特定任务的优先级是较低还是较高。

I think that you can achieve this functionality by using PriorityQeueue (or PriorityBlockingQueue depending on your needs).

These queues process tasks in order that depends on Comparator. Although this comparator is passed to the queue when it is created you can implement your custom comparator that has its own logic that can decide whether specific task is lower or higher priority.

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