[core] Make ScheduledAction.cancel() return boolean and add javadoc

This commit is contained in:
Florian Schmaus 2020-05-16 14:16:23 +02:00
parent 6daf19dbd3
commit 4e5536e227
1 changed files with 7 additions and 2 deletions

View File

@ -32,8 +32,13 @@ public class ScheduledAction implements Delayed {
this.smackReactor = smackReactor;
}
public void cancel() {
smackReactor.cancel(this);
/**
* Cancels this scheduled action.
*
* @return <code>true</code> if the scheduled action was still pending and got removed, <code>false</code> otherwise.
*/
public boolean cancel() {
return smackReactor.cancel(this);
}
public boolean isDue() {