Nagoh
Nagoh

Reputation: 813

Invoking a Continuously Running Webjob via Kudu API

Is it possible to invoke a function on a continuously-running Webjob via the Kudu Webjob API?

I have looked at the documentation @ https://github.com/projectkudu/kudu/wiki/WebJobs-API#invoke-a-triggered-job but unable to see anything regarding invoking a function on a continuously running webjob.

I am hoping to find/use something like:

POST /api/continuouswebjobs/{job name}/run?arguments={arguments}

EDIT FYI - I am able to invoke the function manually via the Kudu dashboard, as below:

enter image description here

Upvotes: 0

Views: 394

Answers (1)

David Ebbo
David Ebbo

Reputation: 43183

There is no such thing as 'invoking' a continuous WebJob. By nature, a continuous WebJob is something that starts and runs forever. The only actions you can take on it is to start and stop it.

By contrast, triggered WebJobs are designed to be specifically invoked.

Upvotes: 1

Related Questions