return this.deepConf({Kue: options}) // create new stamp by composing parent stamp with some configuration
connectionString(connectionString) { return this.configureKue({connectionString} },
priority(priority) { return this.configureKue({priority} },
attempts(attempts) { return this.configureKue({attempts}) },
delay(delay) { return this.configureKue({delay}) },
ttl(ttl) { return this.configureKue({ttl}) },
events(events) { return this.configureKue({events}) }
const MyRegularJobKue = Kue.attempts(5).delay(1000).ttl(10).events(true).priority('low')