perf: optimize tasks queuing implementation
[poolifier.git] / src / index.ts
index e779bf0c548fc16b3b2a86f79dd0f348ae8132e5..178eeed25d8072c9f353d9040cfff4897a6f2294 100644 (file)
@@ -1,8 +1,4 @@
 export type { CircularBuffer } from './circular-buffer.js'
-export type {
-  FixedPriorityQueue,
-  FixedPriorityQueueNode,
-} from './fixed-priority-queue.js'
 export type { AbstractPool } from './pools/abstract-pool.js'
 export { DynamicClusterPool } from './pools/cluster/dynamic.js'
 export type { ClusterPoolOptions } from './pools/cluster/fixed.js'
@@ -53,8 +49,9 @@ export type {
   WorkerUsage,
 } from './pools/worker.js'
 export { WorkerTypes } from './pools/worker.js'
-export type { PriorityQueue, PriorityQueueNode } from './priority-queue.js'
+export type { PriorityQueue } from './priority-queue.js'
 export type {
+  IFixedQueue,
   MessageValue,
   PromiseResponseWrapper,
   Task,