ExecutorCompletionService 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ExecutorCompletionService(IExecutor) |
使用为基本任务执行提供的执行程序和 |
ExecutorCompletionService(IExecutor, IBlockingQueue) |
使用基础任务执行提供的执行程序以及提供的队列作为其完成队列创建 ExecutorCompletionService。 |
ExecutorCompletionService(IntPtr, JniHandleOwnership) |
创建 JNI 对象的托管表示形式时使用的构造函数;由运行时调用。 |
ExecutorCompletionService(IExecutor)
使用为基本任务执行提供的执行程序和 LinkedBlockingQueue
完成队列创建 ExecutorCompletionService。
[Android.Runtime.Register(".ctor", "(Ljava/util/concurrent/Executor;)V", "")]
public ExecutorCompletionService (Java.Util.Concurrent.IExecutor? executor);
[<Android.Runtime.Register(".ctor", "(Ljava/util/concurrent/Executor;)V", "")>]
new Java.Util.Concurrent.ExecutorCompletionService : Java.Util.Concurrent.IExecutor -> Java.Util.Concurrent.ExecutorCompletionService
参数
- executor
- IExecutor
要使用的执行程序
- 属性
例外
如果执行程序为 null
注解
使用为基本任务执行提供的执行程序和 LinkedBlockingQueue
完成队列创建 ExecutorCompletionService。
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
ExecutorCompletionService(IExecutor, IBlockingQueue)
使用基础任务执行提供的执行程序以及提供的队列作为其完成队列创建 ExecutorCompletionService。
[Android.Runtime.Register(".ctor", "(Ljava/util/concurrent/Executor;Ljava/util/concurrent/BlockingQueue;)V", "")]
public ExecutorCompletionService (Java.Util.Concurrent.IExecutor? executor, Java.Util.Concurrent.IBlockingQueue? completionQueue);
[<Android.Runtime.Register(".ctor", "(Ljava/util/concurrent/Executor;Ljava/util/concurrent/BlockingQueue;)V", "")>]
new Java.Util.Concurrent.ExecutorCompletionService : Java.Util.Concurrent.IExecutor * Java.Util.Concurrent.IBlockingQueue -> Java.Util.Concurrent.ExecutorCompletionService
参数
- executor
- IExecutor
要使用的执行程序
- completionQueue
- IBlockingQueue
用作完成队列的队列通常专用于此服务使用。 此队列被视为未绑定的 -- 已完成任务的失败尝试 Queue.add
操作导致它们无法检索。
- 属性
注解
使用基础任务执行提供的执行程序以及提供的队列作为其完成队列创建 ExecutorCompletionService。
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
ExecutorCompletionService(IntPtr, JniHandleOwnership)
创建 JNI 对象的托管表示形式时使用的构造函数;由运行时调用。
protected ExecutorCompletionService (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Concurrent.ExecutorCompletionService : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Concurrent.ExecutorCompletionService
参数
- transfer
- JniHandleOwnership
指示 JniHandleOwnership如何处理 javaReference
注解
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。