Hi sorry for the late delay, (in middle of exams ) any i want to thank you so much for the response , but can you be more specific or provide some resource links
I have spent a couple of hours on these and my issue is TriggerAt // takes a date how do i pass the function to be executed on triggerAt event ,
On reading on message queuse on redis, i found only few examples on how to implement this using nodejs , i happened upon kues which allows me to create jobs and process to carry out that job
// ..
queue.process('payment', (job, done) => {
...
queue.create('medicine::dosage', data)
.priority('critical')
.save() ..... // can set it triggerAt ,
but it can find any triggerAt type of feature or plus it just seem to call create and execute in a synchronise manner.