Type Alias: ThreadedJob
type ThreadedJob = Omit<EnrichedActivatedJob, "log">;
The job object received by a threaded handler. Same shape as EnrichedActivatedJob but without the logger (not available across threads).
type ThreadedJob = Omit<EnrichedActivatedJob, "log">;
The job object received by a threaded handler. Same shape as EnrichedActivatedJob but without the logger (not available across threads).