Share via


IScheduledJobSelector Interface

 

Provides an abstraction for selecting a scheduled job. An implementation can be registered via the T:System.Web.Http.Services.DependencyResolver.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.ScheduledJobs
Assembly:  Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)

Syntax

public interface IScheduledJobSelector
public interface class IScheduledJobSelector
type IScheduledJobSelector = interface end
Public Interface IScheduledJobSelector

Methods

Name Description
System_CAPS_pubmethod SelectJob(String)

Returns a collection of scheduled jobs matching a given jobName. If the collection is empty then no scheduled job was found. If more than one scheduled jobs were found then multiple conflicting scheduled jobs have been found. This can for example be if multiple jobs with the same type name but differing namespaces have been registered. If exactly one scheduled job is returned then that is the job that should be executed.

See Also

Microsoft.WindowsAzure.Mobile.Service.ScheduledJobs Namespace

Return to top