agenda
Version:
Light weight job scheduler for Node.js
17 lines (14 loc) • 354 B
text/typescript
import createDebugger from "debug";
import { Agenda } from ".";
const debug = createDebugger("agenda:name");
/**
* Set name of queue
* @name Agenda#name
* @function
* @param name name of agenda instance
*/
export const name = function (this: Agenda, name: string): Agenda {
debug("Agenda.name(%s)", name);
this._name = name;
return this;
};