Package org.jivesoftware.smack
Class ScheduledAction
- java.lang.Object
-
- org.jivesoftware.smack.ScheduledAction
-
- All Implemented Interfaces:
Comparable<Delayed>
,Delayed
public class ScheduledAction extends Object implements Delayed
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
cancel()
Cancels this scheduled action.int
compareTo(Delayed otherDelayed)
long
getDelay(TimeUnit unit)
long
getTimeToDueMillis()
boolean
isDue()
-
-
-
Method Detail
-
cancel
public boolean cancel()
Cancels this scheduled action.- Returns:
true
if the scheduled action was still pending and got removed,false
otherwise.
-
isDue
public boolean isDue()
-
getTimeToDueMillis
public long getTimeToDueMillis()
-
compareTo
public int compareTo(Delayed otherDelayed)
- Specified by:
compareTo
in interfaceComparable<Delayed>
-
-