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 IScheduledJob

Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Minimal interface for all classes that should be executed by the ISchedulerService

Namespace: EPiServer.Scheduler.Internal
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
public interface IScheduledJob

Properties

ID

Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Gets the identifier of the scheduled job this job instance represents.

Declaration
Guid ID { get; }
Property Value
Type Description
System.Guid

Methods

Execute()

Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Executes the task that it has been scheduled to do.

Declaration
string Execute()
Returns
Type Description
System.String

A string describing the outcome

Extension Methods