ForkJoinPool.CommonPool 方法

定义

返回公共池实例。

[Android.Runtime.Register("commonPool", "()Ljava/util/concurrent/ForkJoinPool;", "", ApiSince=24)]
public static Java.Util.Concurrent.ForkJoinPool? CommonPool ();
[<Android.Runtime.Register("commonPool", "()Ljava/util/concurrent/ForkJoinPool;", "", ApiSince=24)>]
static member CommonPool : unit -> Java.Util.Concurrent.ForkJoinPool

返回

通用池实例

属性

注解

返回公共池实例。 此池是静态构造的;其运行状态不受尝试 #shutdown#shutdownNow影响。 但是,此池和正在进行的处理都会在程序 System#exit后自动终止。 在程序终止之前,依赖于异步任务处理完成的任何程序都应在退出之前调用 commonPool().#awaitQuiescence awaitQuiescence

已在 1.8 中添加。

适用于 . 的 java.util.concurrent.ForkJoinPool.commonPool()Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于