取消预定的执行者
我目前有一个预定的执行程序,它在延迟后发出一条消息,如下所示:
executor.schedule(new Runnable() {
public void run() {
emitter.emit( message );
}
}, delay, TimeUnit.MILLISECONDS);
我需要另一个线程来侦听取消消息,该取消消息将发送不同的消息,并且我需要停止发送上述消息。如果没有收到取消消息,则上述内容将正常发送。最好的方法是什么?
谢谢。
I currently have a scheduled executor which sends out a message after a delay like this:
executor.schedule(new Runnable() {
public void run() {
emitter.emit( message );
}
}, delay, TimeUnit.MILLISECONDS);
I need to have another thread which will listen for a cancel message which will send a different message and I need to stop the above message from sending. If no cancel message is received the above sends as normal. Whats the best way to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过使用执行器的返回值
或使用执行器的 shutdown() 方法来完成。
看看关闭()
并取消 ()
This can be done by using the return value of
or by using the shutdown() method of the executor.
Take a look at shutdown()
and cancel()
Executor#shutdown() ; 或 Executor#shutdownNow()
Executor#shutdown(); or Executor#shutdownNow()