March 2005
Beginner to intermediate
1254 pages
104h 21m
English
ScheduledFuture<V>
This interface extends
Future
and Delayed and adds no methods of its own. A
ScheduledFuture represents a computation and the
future result of that computation just as Future
does, but it adds a getDelay( ) method that
returns the amount of time until the computation begins. See
ScheduledExecutorService.
Figure 16-90. java.util.concurrent.ScheduledFuture<V>
public interface ScheduledFuture<V> extends DelayedFuture<V> {
}
ScheduledExecutorService.{schedule( ),
scheduleAtFixedRate( ),
scheduleWithFixedDelay( )},
ScheduledThreadPoolExecutor.{schedule( ),
scheduleAtFixedRate( ),
scheduleWithFixedDelay( )}
Read now
Unlock full access