api calls are request/response. you can not pause.
if you need this feature, you need to build a scheduler to run the jobs in the background. then the rest api is an api to this scheduler, start, pause, resume, cancel.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
Is it possible to pause and resume a Asp.net REST API Call?
I have a UI where in, there are maximum 5 jobs are listed.
There are two options, either I can run each job manually by clicking RUN button (OR) I can click on Run All Job Button to run all jobs.
In Manual Clicking Run Button, we want to achieve following:
In Click on Run All Button, we want to achieve the following:
api calls are request/response. you can not pause.
if you need this feature, you need to build a scheduler to run the jobs in the background. then the rest api is an api to this scheduler, start, pause, resume, cancel.