(ctx: TakeAlgorithmPickContextInternal):
| TakeAlgorithmPickInternal
| undefinedUser-supplied take algorithm. Return undefined when nothing should be taken (empty).
models
Source src/internal/workPool.ts:2081 lines
export type type CustomTakeAlgorithm = (
ctx: TakeAlgorithmPickContextInternal
) => TakeAlgorithmPickInternal | undefined
User-supplied take algorithm. Return undefined when nothing should be taken (empty).
CustomTakeAlgorithm = type CustomTakeAlgorithmInternal = (ctx: TakeAlgorithmPickContextInternal) => TakeAlgorithmPickInternal | undefinedUser-supplied take algorithm (config hook).
CustomTakeAlgorithmInternal;