London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface ISchedulerService

Support for running the scheduler and stopping the service

Namespace: EPiServer.Scheduler
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public interface ISchedulerService

Methods

Run()

Will start the scheduler process

Declaration
void Run()
Remarks

Create a new long running System.Threading.Tasks.Task before calling method since this it will be blocking

Stop()

Will stop the background task that runs the scheduler

Declaration
void Stop()

Extension Methods