MCPcopy Index your code
hub / github.com/Linen-dev/linen.dev / createFeedJob

Function createFeedJob

packages/queue/src/tasks/build-feed.ts:16–30  ·  view source on GitHub ↗
(
  addJob: AddJobFunction,
  opt: { runAt?: Date } = {}
)

Source from the content-addressed store, hash-verified

14};
15
16export const createFeedJob = async (
17 addJob: AddJobFunction,
18 opt: { runAt?: Date } = {}
19) => {
20 await addJob(
21 'buildFeed',
22 {},
23 {
24 jobKey: 'buildFeed',
25 jobKeyMode: 'replace',
26 queueName: 'buildFeed',
27 ...opt,
28 }
29 );
30};

Callers 2

runWorkerFunction · 0.90
buildFeedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected