All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.util.concurrent.ScheduledFuture Maven / Gradle / Ivy

/*
 * Written by Doug Lea with assistance from members of JCP JSR-166
 * Expert Group and released to the public domain, as explained at
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

package java.util.concurrent;

/**
 * A delayed result-bearing action that can be cancelled.
 * Usually a scheduled future is the result of scheduling
 * a task with a {@link ScheduledExecutorService}.
 *
 * @since 1.5
 * @author Doug Lea
 * @param  The result type returned by this Future
 */
public interface ScheduledFuture extends Delayed, Future {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy