Public Member Functions | |
RunDelayed (Runnable runnable, int delayMillis) | |
long | getDelay (TimeUnit unit) |
Runnable | getRunnable () |
int | compareTo (Delayed delayed) |
Private Attributes | |
long | expires |
Runnable | runnable |
Definition at line 223 of file LastExecutor.java.
|
Creates a new RunDelayed item that contains runnable.
Definition at line 241 of file LastExecutor.java. References ikayaki.util.LastExecutor.RunDelayed.expires, and ikayaki.util.LastExecutor.RunDelayed.runnable. |
|
Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
Definition at line 273 of file LastExecutor.java. References ikayaki.util.LastExecutor.RunDelayed.getDelay(). |
Here is the call graph for this function:
|
Returns the remaining delay associated with this object, always in milliseconds.
Definition at line 252 of file LastExecutor.java. References ikayaki.util.LastExecutor.RunDelayed.expires. Referenced by ikayaki.util.LastExecutor.RunDelayed.compareTo(). |
|
Returns the contained Runnable.
Definition at line 261 of file LastExecutor.java. References ikayaki.util.LastExecutor.RunDelayed.runnable. Referenced by ikayaki.util.LastExecutor.LastExecutorThread.run(). |
|
The point in time when this RunDelayed will expire. Definition at line 228 of file LastExecutor.java. Referenced by ikayaki.util.LastExecutor.RunDelayed.getDelay(), and ikayaki.util.LastExecutor.RunDelayed.RunDelayed(). |
|
Contained Runnable object to be run after this RunDelayed has expired. Definition at line 233 of file LastExecutor.java. Referenced by ikayaki.util.LastExecutor.RunDelayed.getRunnable(), and ikayaki.util.LastExecutor.RunDelayed.RunDelayed(). |