Please enable JavaScript.
Coggle requires JavaScript to display documents.
Generic Scheduler (Goals (Easy to create a job, Easy to update the job,…
Generic Scheduler
-
-
Examples
Examples 1
-
The scheduler would queue the message with the parameters into RabbitMQ which would be consumed by a drainer
RecurringJob.Add(rabbitMQMessageName, objectThatHoldsAllRequiredParameters, Cron.Daily(12,0,0))
Example 2
BackgroundJob.Schedule(rabbitMQMessageName, objectThatHoldsAllRequiredParameters, Timespan.FromDays(7))
-