我目前有一个预定的执行者,在这样的延迟之后发出一条消息:
executor.schedule(new Runnable() {
public void run() {
emitter.emit( message );
}
}, delay, TimeUnit.MILLISECONDS);
我需要另一个线程来监听取消消息,该消息将发送不同的消息,我需要停止发送上述消息。如果没有收到取消消息,则上述正常发送。这是最好的方法吗?
感谢。
答案 0 :(得分:9)
这可以通过使用
的返回值来完成ScheduledFuture<?> future = executor.schedule(new Runnable() {
public void run() {
emitter.emit( message );
}
}, delay, TimeUnit.MILLISECONDS);
future.cancel(true); //true if task should be interrupted
答案 1 :(得分:1)