X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fpool.ts;h=57898d98a9d53a8c89c3d774847e9cae694a53fe;hb=dcf506bf57dd6ac13cc1567df180c039852c3652;hp=3d9d9e6f482723cdb634e98bd02a9bbd46df3314;hpb=a449b5852f851c943360152c6acba7033ea48c23;p=poolifier.git diff --git a/examples/typescript/pool.ts b/examples/typescript/pool.ts index 3d9d9e6f..57898d98 100644 --- a/examples/typescript/pool.ts +++ b/examples/typescript/pool.ts @@ -1,6 +1,6 @@ import { dirname, extname, join } from 'node:path' import { fileURLToPath } from 'node:url' -import type { MyData, MyResponse } from './worker' +import type { MyData, MyResponse } from './worker.js' import { DynamicThreadPool, FixedThreadPool, @@ -38,3 +38,9 @@ export const dynamicPool = new DynamicThreadPool>( } } ) + +// eslint-disable-next-line @typescript-eslint/no-misused-promises +setTimeout(async () => { + await fixedPool.destroy() + await dynamicPool.destroy() +}, 3000)