Changed Methods |
ScheduledFuture<?> schedule(Runnable, Date)
|
Change in return type from ScheduledFuture to ScheduledFuture<?> .
|
Schedule the given Runnable, invoking it at the specified execution time. |
ScheduledFuture<?> schedule(Runnable, Trigger)
|
Change in return type from ScheduledFuture to ScheduledFuture<?> .
|
Schedule the given Runnable, invoking it whenever the trigger
indicates a next execution time. |
ScheduledFuture<?> scheduleAtFixedRate(Runnable, Date, long)
|
Change in return type from ScheduledFuture to ScheduledFuture<?> .
|
Schedule the given Runnable, invoking it at the specified execution time
and subsequently with the given period. |
ScheduledFuture<?> scheduleAtFixedRate(Runnable, long)
|
Change in return type from ScheduledFuture to ScheduledFuture<?> .
|
Schedule the given Runnable, starting as soon as possible and
invoking it with the given period. |
ScheduledFuture<?> scheduleWithFixedDelay(Runnable, Date, long)
|
Change in return type from ScheduledFuture to ScheduledFuture<?> .
|
Schedule the given Runnable, invoking it at the specified execution time
and subsequently with the given delay between the completion of one execution
and the start of the next. |
ScheduledFuture<?> scheduleWithFixedDelay(Runnable, long)
|
Change in return type from ScheduledFuture to ScheduledFuture<?> .
|
Schedule the given Runnable, starting as soon as possible and
invoking it with the given delay between the completion of one execution
and the start of the next. |