Advanced Usage
These guides show you some of the more advanced features of TinyTick, including how to create abortable task runs, how to retry tasks, and how to control the state of the Manager
.
Aborting Tasks
If a task run takes too long, the Manager
will attempt to abort it, and potentially retry it. Read more.
Retries And Backoff
Since a task run can be aborted (if it times out) or throw an error, it's useful for the Manager
to be able to retry it - and you can completely control how many times a task run is retried until it is successful, and how long to wait between each retry. Read more.
Starting And Stopping
We finish with a relatively simple topic, but one that has some important behaviors worth mentioning. Read more.