1. /*
  2. * @(#)ScheduledFuture.java 1.5 04/01/12
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.util.concurrent;
  8. /**
  9. * A delayed result-bearing action that can be cancelled.
  10. * Usually a scheduled future is the result of scheduling
  11. * a task with a {@link ScheduledExecutorService}.
  12. *
  13. * @since 1.5
  14. * @author Doug Lea
  15. * @param <V> The result type returned by this Future
  16. */
  17. public interface ScheduledFuture<V> extends Delayed, Future<V> {
  18. }