Future接口,顾名思义标的一个任务的未来:要么执行完成要么被取消
方法说明:
1.boolean cancel(boolean mayInterruptIfRunning);
Attempts to cancel execution of this task. This attempt will
fail if the task has already completed, has already been cancelled,
or could not be cancelled for some other reason
取消执行任务。如果任务已经执行完成,或者已经取消,或者由于其他原因不能被取消,则取消失败
通过参数设置是否打断任务的执行
2.boolean isCancelled();
if this task was cancelled before it completed normally
查看正常结束之前是否被取消
3.boolean isDone();
if this task completed
查看任务是否已结束
4.V get() throws InterruptedException, ExecutionException;
Waits if necessary for the computation to complete, and then
retrieves its result
等到任务执行结束(如需要等待),然后返回结果
5.V get(long timeout, TimeUnit unit)
throws InterruptedException, ExecutionException, TimeoutException;
Waits if necessary for at most the given time for the computation
to complete, and then retrieves its result, if available.
在指定的等待时间内让任务执行(如需要等待),如果有结果就返回
2.Future<V>
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Android Handler机制系列文章整体内容如下: Android Handler机制1之ThreadAnd...