Top Fields Constructors Methods
io.netty.util.concurrent

public final Class ThreadPerTaskExecutor

extends Object
implements Executor
Class Inheritance
All Implemented Interfaces
java.util.concurrent.Executor
Imports
io.netty.util.internal.ObjectUtil, java.util.concurrent.Executor, .ThreadFactory

Field Summary

Modifier and TypeField and Description
private final ThreadFactory

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public void
execute(Runnable
the runnable task
command
)

Implements java.util.concurrent.Executor.execute.

Executes the given command at some time in the future.
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

threadFactoryback to summary
private final ThreadFactory threadFactory

Constructor Detail

ThreadPerTaskExecutorback to summary
public ThreadPerTaskExecutor(ThreadFactory threadFactory)

Method Detail

executeback to summary
public void execute(Runnable command)

Implements java.util.concurrent.Executor.execute.

Doc from java.util.concurrent.Executor.execute.

Executes the given command at some time in the future. The command may execute in a new thread, in a pooled thread, or in the calling thread, at the discretion of the Executor implementation.

Parameters
command:Runnable

the runnable task

Annotations
@Override