Click or drag to resize

Executors Class

Class that provides access to threadPool like services. This class exists to provide an easier bridge between the CLR thread pool and the JVM thread pool mechanisms.
Inheritance Hierarchy
SystemObject
  com.espertech.esper.compat.concurrencyExecutors

Namespace:  com.espertech.esper.compat.concurrency
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public class Executors

The Executors type exposes the following members.

Constructors
  NameDescription
Public methodExecutors
Initializes a new instance of the Executors class
Top
Methods
  NameDescription
Public methodStatic memberDefaultExecutor
Creates a new thread pool and returns the executor. Ours does nothing as we use the CLR thread pool.
Public methodStatic memberDefaultScheduledExecutorService
Creates a scheduled executor service that uses the thread pool for task execution.
Public methodStatic memberNewCachedThreadPool
Returns (or creates) a cached thread pool executor.
Public methodStatic memberNewFixedThreadPool
Creates a fixed thread pool executor.
Public methodStatic memberNewMultiThreadedExecutor
Creates an executor tied to an explicit pool of threads.
Public methodStatic memberNewSingleThreadExecutor
Creates a new thread pool and returns the executor.
Top
See Also