标签: java guava
问题是,我希望我在ListeningExecutorService中放置的可调用来保持无限执行,并在每次执行时触发回调。
我该怎么做?
答案 0 :(得分:0)
听起来好像你想要一个运行循环的Service并且有一些回调通知每次运行。
我没有任何重复执行Callable的知识。有ScheduledExecutorService及其听力等效ListeningScheduledExecutorService,可以重复执行Runnable,但不能Callable s。
Callable
ScheduledExecutorService
ListeningScheduledExecutorService
Runnable