Whatever message this page gives is out now! Go check it out!
<cfcomponent implements="CFIDE.scheduler.ITaskEventHandler">
<cffunction name="onTaskStart" returntype="boolean">
<cfargument name="context" type="struct"/>
<cfmail from="a@adobe.com" subject="Scheduler_Scenario_Testing" to="a@adobe.com">
The Report is about to be generated.
</cfmail>
<cfreturn true>
</cffunction>
<cffunction name="onMisfire" returntype="void">
<cfargument name="context" type="struct" required="false"/>
<cfmail from="a@adobe.com" subject="Scheduler_Scenario_Testing" to="a@adobe.com">
The Report generation task has misfired.
</cfmail>
</cffunction>
<cffunction name="onTaskEnd" access="public" returntype="void">
<cfargument name="context" type="struct" required="false"/>
<cfmail from="a@adobe.com" subject="Scheduler_Scenario_Testing" to="a@adobe.com">
The Report generation task has Completed.
</cfmail>
</cffunction>
<cffunction name="onError" returntype="void">
<cfargument name="context" type="struct" required="false"/>
<cfmail from="a@adobe.com" subject="Scheduler_Scenario_Testing" to="a@adobe.com">
The Report generation task has errored out.
</cfmail>
</cffunction>
<cffunction name="execute" returntype="void">
<cfargument name="context" type="struct" required="false"/>
<cffile action="append" file="#Expandpath('.')#/log.txt" output="<b>In Execute</b>">
</cffunction>
</cfcomponent>| action=update task=t1 url="www.adobe.com" group="G1" mode="application" onComplete="t2:DEFAULT:application"> |
<cfschedule .... exclude="date1 TO date2" .../><cfschedule ... exclude="02/02/2011,03/03/2011" .../><cfschedule task="job1" onException="REFIRE,PAUSE,INVOKEHANDLER" ....><cfschedule task="trigger1" onmisfire="FIRE_NOW, INVOKEHANDLER"/><cfschedule group="group1" action="pause" .......><cfschedule group="group1" action="resume" .......><cfschedule action="pauseall" mode=application/><cfschedule action="resumeall" mode=server/><cfschedule action="list" mode="application" result ="res" /><cfschedule task="job1" onException="REFIRE" retryCount="3" ....><cfschedule task="task1" repeat="20" interval="60" ....>