0

I have a list of 10 time stamps which keeps on updating dynamically. In total there are 3 such lists for 3 users. I want to build a utility to trigger a function at the next upcoming time stamp. (preferably everything over server-less compute)

I am stuck in finding out how to achieve this over aws or firebase

U7786
  • 139
  • 1
  • 9

1 Answers1

0

On Firebase/Google Cloud Functions the two most common options are either to store the schedule in a database and then periodically trigger a Cloud Function and run the tasks that are due, or to use Cloud Tasks to dynamically schedule a callback to a separate Cloud Function for each task.

I recommend also reading:

Frank van Puffelen
  • 499,950
  • 69
  • 739
  • 734