Commit | Line | Data |
---|---|---|
c97c7edb S |
1 | export { DynamicClusterPool } from './pools/cluster/dynamic' |
2 | export { FixedClusterPool } from './pools/cluster/fixed' | |
3 | export type { ClusterPoolOptions } from './pools/cluster/fixed' | |
c4855468 | 4 | export type { AbstractPool } from './pools/abstract-pool' |
aee46736 | 5 | export { PoolEvents } from './pools/pool' |
0274ce2d JB |
6 | export type { |
7 | IPool, | |
8 | PoolEmitter, | |
0274ce2d | 9 | PoolEvent, |
c7c04698 | 10 | PoolOptions, |
e8bd29ce | 11 | PoolType, |
0274ce2d JB |
12 | TasksQueueOptions |
13 | } from './pools/pool' | |
bdaf31cd JB |
14 | export type { |
15 | ErrorHandler, | |
16 | ExitHandler, | |
0274ce2d | 17 | IWorker, |
ea7a90d3 | 18 | MessageHandler, |
c4855468 | 19 | OnlineHandler, |
e8bd29ce JB |
20 | Task, |
21 | TasksUsage, | |
c4855468 | 22 | WorkerNode |
f06e48d8 | 23 | } from './pools/worker' |
bdaf31cd | 24 | export { WorkerChoiceStrategies } from './pools/selection-strategies/selection-strategies-types' |
8125b6a2 | 25 | export type { |
c4855468 | 26 | IWorkerChoiceStrategy, |
e8bd29ce | 27 | RequiredStatistics, |
8125b6a2 JB |
28 | WorkerChoiceStrategy, |
29 | WorkerChoiceStrategyOptions | |
30 | } from './pools/selection-strategies/selection-strategies-types' | |
c4855468 | 31 | export type { WorkerChoiceStrategyContext } from './pools/selection-strategies/worker-choice-strategy-context' |
c97c7edb S |
32 | export { DynamicThreadPool } from './pools/thread/dynamic' |
33 | export { FixedThreadPool } from './pools/thread/fixed' | |
34 | export type { ThreadWorkerWithMessageChannel } from './pools/thread/fixed' | |
c4855468 | 35 | export type { AbstractWorker } from './worker/abstract-worker' |
c97c7edb S |
36 | export { ClusterWorker } from './worker/cluster-worker' |
37 | export { ThreadWorker } from './worker/thread-worker' | |
1a81f8af S |
38 | export { KillBehaviors } from './worker/worker-options' |
39 | export type { KillBehavior, WorkerOptions } from './worker/worker-options' | |
e8bd29ce JB |
40 | export type { |
41 | Draft, | |
48ef9107 | 42 | MessageValue, |
c7c04698 JB |
43 | PromiseResponseWrapper, |
44 | TaskFunctions, | |
48ef9107 JB |
45 | WorkerAsyncFunction, |
46 | WorkerFunction, | |
47 | WorkerSyncFunction | |
e8bd29ce | 48 | } from './utility-types' |
4342a45e | 49 | export type { CircularArray } from './circular-array' |
13455ed2 | 50 | export type { Queue } from './queue' |