Background Jobs
Background jobs are used to perform calls of certain functionality without waiting for completion of these calls.Jobs mechanism allows you to do the following:
- Call a procedure asynchronously that is without waiting until its completion;
- Track progress of certain job's execution and get job's completion status (a value showing the job has been completed successfully or unsuccessfully);
- Obtain a list of current jobs;
- Lock current work flow until a job completion;
- Manage jobs (cancel them, etc.).