IJobHandler Interface
Autodesk.Connectivity.JobProcessor.Extensibility›Autodesk.Connectivity.JobProcessor.Extensibility
The interface that Job Handlers must implement.
Syntax
public interface IJobHandler Public Interface IJobHandler Methods
| Name | Description |
|---|---|
| CanProcess | Called at Job Processor startup to determine whither or not a job of the specified type can be processed by the job handler on this particular machine. Implementations should check to see whether enabling software is installed. |
| Execute | The Execute method processes the job and returns success or failure |
| OnJobProcessorShutdown | Called when the Job Processor is closing. |
| OnJobProcessorSleep | Called when the Job Processor process is about to sleep. |
| OnJobProcessorStartup | Called at Job Processor startup. |
| OnJobProcessorWake | Called when the Job Processor process wakes from sleeping. |