Alexander Bezrodniy
Alexander Bezrodniy

Reputation: 8804

Callbacks for scheduled future in java

Are there any ways to add callbacks(on success, on fail) to ScheduledFuture? Seems guava with ListneableFuture doesn't provide this.

Upvotes: 1

Views: 907

Answers (1)

ColinD
ColinD

Reputation: 110046

ListenableScheduledFuture was added in Guava 15.0 and is now returned by the methods on ListenableScheduledExecutorService.

Upvotes: 4

Related Questions