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