]>
Commit | Line | Data |
---|---|---|
1 | export { DynamicClusterPool } from './pools/cluster/dynamic' | |
2 | export { FixedClusterPool } from './pools/cluster/fixed' | |
3 | export type { ClusterPoolOptions } from './pools/cluster/fixed' | |
4 | export { PoolEvents } from './pools/pool' | |
5 | export type { IPool, PoolEmitter, PoolOptions, PoolEvent } from './pools/pool' | |
6 | export type { | |
7 | ErrorHandler, | |
8 | ExitHandler, | |
9 | MessageHandler, | |
10 | OnlineHandler | |
11 | } from './pools/worker' | |
12 | export { WorkerChoiceStrategies } from './pools/selection-strategies/selection-strategies-types' | |
13 | export type { | |
14 | WorkerChoiceStrategy, | |
15 | WorkerChoiceStrategyOptions | |
16 | } from './pools/selection-strategies/selection-strategies-types' | |
17 | export { DynamicThreadPool } from './pools/thread/dynamic' | |
18 | export { FixedThreadPool } from './pools/thread/fixed' | |
19 | export type { ThreadWorkerWithMessageChannel } from './pools/thread/fixed' | |
20 | export { ClusterWorker } from './worker/cluster-worker' | |
21 | export { ThreadWorker } from './worker/thread-worker' | |
22 | export { KillBehaviors } from './worker/worker-options' | |
23 | export type { KillBehavior, WorkerOptions } from './worker/worker-options' |