X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-worker_threads%2Fsrc%2Ffastify-poolifier.ts;h=c031d287d34a640b368839fe8ef6936d47a6cf9a;hb=97538b3355d23163509ededcc152b8101c7cc793;hp=766ef44ec3fdcbb5e1e11304340d8065d47e03c1;hpb=ded253e27e59ae936fe91d789d8454b7eb11dd6a;p=poolifier.git diff --git a/examples/typescript/http-server-pool/fastify-worker_threads/src/fastify-poolifier.ts b/examples/typescript/http-server-pool/fastify-worker_threads/src/fastify-poolifier.ts index 766ef44e..c031d287 100644 --- a/examples/typescript/http-server-pool/fastify-worker_threads/src/fastify-poolifier.ts +++ b/examples/typescript/http-server-pool/fastify-worker_threads/src/fastify-poolifier.ts @@ -4,10 +4,10 @@ import type { FastifyPluginCallback } from 'fastify' import fp from 'fastify-plugin' import { availableParallelism, DynamicThreadPool } from 'poolifier' -import { - type FastifyPoolifierOptions, - type WorkerData, - type WorkerResponse +import type { + FastifyPoolifierOptions, + WorkerData, + WorkerResponse } from './types.js' const fastifyPoolifierPlugin: FastifyPluginCallback = ( @@ -38,7 +38,7 @@ const fastifyPoolifierPlugin: FastifyPluginCallback = ( async ( data?: WorkerData, name?: string, - transferList?: TransferListItem[] + transferList?: readonly TransferListItem[] ): Promise => await pool.execute(data, name, transferList) ) }