1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-23 03:54:54 +02:00

[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

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() {