( tag: Context.Tag<Tag, Worker.WorkerPool<I, O, E>>, options: Worker.WorkerPool.Options<I> )
| 283 | |
| 284 | /** @internal */ |
| 285 | export const makePoolLayer = <Tag, I, O, E>( |
| 286 | tag: Context.Tag<Tag, Worker.WorkerPool<I, O, E>>, |
| 287 | options: Worker.WorkerPool.Options<I> |
| 288 | ) => Layer.scoped(tag, makePool(options)) |
| 289 | |
| 290 | /** @internal */ |
| 291 | export const makeSerialized = < |
nothing calls this directly
no test coverage detected