X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.ts;h=2bae50e71083ebde5075ddff357f78db1970a896;hb=b98ec2e690d5ba33a13a2848b0f1315b885c2f4b;hp=7242dd5e1fbe4c36bbbbd00f17bc3af7cc2c756d;hpb=cda5cc74c77bdfc37b220ef19637876e221b5061;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index 7242dd5e..2bae50e7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,10 +9,13 @@ export { DynamicClusterPool } from './pools/cluster/dynamic' export { FixedClusterPool } from './pools/cluster/fixed' export type { ClusterPoolOptions } from './pools/cluster/fixed' export type { IPool } from './pools/pool' +export { WorkerChoiceStrategies } from './pools/selection-strategies' +export type { WorkerChoiceStrategy } from './pools/selection-strategies' export { DynamicThreadPool } from './pools/thread/dynamic' export { FixedThreadPool } from './pools/thread/fixed' export type { ThreadWorkerWithMessageChannel } from './pools/thread/fixed' export { AbstractWorker } from './worker/abstract-worker' export { ClusterWorker } from './worker/cluster-worker' export { ThreadWorker } from './worker/thread-worker' -export type { WorkerOptions } from './worker/worker-options' +export { KillBehaviors } from './worker/worker-options' +export type { KillBehavior, WorkerOptions } from './worker/worker-options'