azure service fabric sample
This repository is aimed to hold Azure Service Fabric related samples.
Azure Service Fabric Servies can be configured to exhibit trigger based bahvior similar to WebJobs and Azure Functions. Have added a code samples to exhibit such behavior (Detailed below).
Here I’m taking the second approach which involves the respective listener to be created. Rather than writing new Scheduling framework, I’m using the Quartz.Net framework. I’m using the CRON expression behavior to have the behavior inline with the time trigger behavior of WebJobs and Azure Functions.
IJob
types from the current assembly with JobInfoAttribute
decorated.JobInfoAttribute
holds the name and CRON expression of the job. IJob
types from the current assembly with JobInfoAttribute
decorated.JobInfoAttribute
holds the name and CRON expression of the job.