X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fbenchmarks-types.mjs;h=cbd254e09190826b9baa89cb27c2d2bda5bfb371;hb=13a332e67a8a208b09c673d8a4a132df657ff4e6;hp=f7d8bdb9d9002b5d34169af5a61eb9fb192aab9e;hpb=8f810074232deefe64634a8942b1db5b8d3bb0dc;p=poolifier.git diff --git a/benchmarks/benchmarks-types.mjs b/benchmarks/benchmarks-types.mjs index f7d8bdb9..cbd254e0 100644 --- a/benchmarks/benchmarks-types.mjs +++ b/benchmarks/benchmarks-types.mjs @@ -1,18 +1,16 @@ -const WorkerFunctions = { +export const WorkerFunctions = { jsonIntegerSerialization: 'jsonIntegerSerialization', fibonacci: 'fibonacci', factorial: 'factorial', readWriteFiles: 'readWriteFiles' } -const PoolTypes = { +export const PoolTypes = { fixed: 'fixed', dynamic: 'dynamic' } -const WorkerTypes = { +export const WorkerTypes = { thread: 'thread', cluster: 'cluster' } - -export { PoolTypes, WorkerFunctions, WorkerTypes }