SchedEx v0.3.0 SchedEx View Source

SchedEx schedules jobs (either m,f,a tuples or functions) to run in the future. These jobs are run in isolated processes, and are unsurpervised.

Link to this section Summary

Functions

Cancels the given scheduled job

Runs the given function at the given time

Runs the given module, function and argument tuple at the given time

Runs the given function on every occurence of the given crontab

Runs the given module, function and argument tuple on every occurence of the given crontab

Runs the given function in given number of milliseconds

Runs the given module, function and argument tuple in given number of milliseconds

Link to this section Functions

Cancels the given scheduled job

Runs the given function at the given time

Runs the given module, function and argument tuple at the given time

Link to this function run_every(func, crontab, opts \\ []) View Source

Runs the given function on every occurence of the given crontab

Link to this function run_every(m, f, a, crontab, opts \\ []) View Source

Runs the given module, function and argument tuple on every occurence of the given crontab

Link to this function run_in(func, delay, opts \\ []) View Source

Runs the given function in given number of milliseconds

Link to this function run_in(m, f, a, delay, opts \\ []) View Source

Runs the given module, function and argument tuple in given number of milliseconds