Java java.util.concurrent ExecutorCompletionService fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent ExecutorCompletionService fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent ExecutorCompletionService.

The text is from its open source code.

Subclass

java.util.concurrent.ExecutorCompletionService has subclasses.
Click this link to see all its subclasses.

Constructor

ExecutorCompletionService(Executor executor)
Creates an ExecutorCompletionService using the supplied executor for base task execution and a LinkedBlockingQueue as a completion queue.
ExecutorCompletionService(Executor executor, BlockingQueue> completionQueue)
Creates an ExecutorCompletionService using the supplied executor for base task execution and the supplied queue as its completion queue.

Method