May 2017
Intermediate to advanced
442 pages
11h 55m
English
To force the process through the batch framework, we will use the execution modes: ReliableAsynchronous and ScheduledBatch.
Both of these methods submit jobs to the batch server for execution, where the ReliableAsynchronous method auto-deletes the jobs after execution.
The jobs do not execute immediately, but within a minute of submission; the batch server polls for waiting jobs every minute. We should use this method to perform asynchronous or scheduled jobs that require heavy processing.
Programmatically speaking, we wouldn't want to use the ScheduledBatch mode. This would be set based on the user choosing to run as a background task.
To submit the task as ReliableAsynchronous, simply change the ...
Read now
Unlock full access