cpp-sdk icon indicating copy to clipboard operation
cpp-sdk copied to clipboard

Add Jobs API

Open cicoyle opened this issue 1 year ago • 0 comments

Dapr v1.14 adds support for the Jobs API which uses the Scheduler control plane service under the hood. This new API allows users to schedule/get/delete jobs to be triggered at some point in the future. Once triggered from the Scheduler control plane service, daprd will send the job to the app via either grpc or http via OnJobEventAlpha1 or /jobs repspectively. The API is exposed to the user for both grpc + http via the ScheduleJobAlpha1/GetJobAlpha1/DeleteJobAlpha1 apis.

Reference implementation for the go-sdk. Note the API is called jobs

cicoyle avatar Aug 14 '24 20:08 cicoyle