Uses of Interface
java.util.concurrent.RunnableFuture
-
Packages that use RunnableFuture 软件包 描述 java.util.concurrent 实用程序类通常用于并发编程。javafx.concurrent 提供javafx.task的一组类。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。 -
-
Uses of RunnableFuture in java.util.concurrent
Subinterfaces of RunnableFuture in java.util.concurrent Modifier and Type 接口 描述 interfaceRunnableScheduledFuture<V>AScheduledFuture,这是Runnable。Classes in java.util.concurrent that implement RunnableFuture Modifier and Type Class 描述 classFutureTask<V>可取消的异步计算。Methods in java.util.concurrent that return RunnableFuture Modifier and Type 方法 描述 protected <T> RunnableFuture<T>AbstractExecutorService. newTaskFor(Runnable runnable, T value)为给定的可运行和默认值返回一个RunnableFuture。protected <T> RunnableFuture<T>AbstractExecutorService. newTaskFor(Callable<T> callable)返回给定可调用任务的RunnableFuture。protected <T> RunnableFuture<T>ForkJoinPool. newTaskFor(Runnable runnable, T value)protected <T> RunnableFuture<T>ForkJoinPool. newTaskFor(Callable<T> callable) -
Uses of RunnableFuture in javafx.concurrent
Classes in javafx.concurrent that implement RunnableFuture Modifier and Type Class 描述 classTask<V>一个完全可观察到的一个FutureTask的实现。 -
Uses of RunnableFuture in javax.swing
Classes in javax.swing that implement RunnableFuture Modifier and Type Class 描述 classSwingWorker<T,V>在后台线程中执行冗长的GUI交互任务的抽象类。
-