Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Send Notify Message
Check this field to send a notification message to watchers.

Template
Template of notification content. This option only visible when one or more message template defined.

Evaluation

Configures the task as perform scheduled operations. Depending of task type performs following:

Start Point

If task configured as start point emakin periodically initiates new instances depending on schedule and executes the evaluation script. When any action taken continues to next step on workflow.

Normal

If task configured as intermediate task, emakin periodically checks any all waiting tasks and executes the evaluation script on it. When any action taken continues to next step on workflow.

For evaluation you can configure following:

Enabled
Check this field to enable scheduled operation.

Schedule
Schedule of evaluation. 

Script
Script to execute on scheduled event occurs. 

Common Schedules

Hourly Schedule

Perform every on 10 minutes.

Code Block
languagexml
titleHourly
<Schedule Name="">
    <Schedule Type="Hourly">
        <Duration>00:10:00</Duration>
    </Schedule>
</Schedule>

Weekly Schedule

Perform every day except sunday and saturday.

Code Block
languagexml
titleHourly
<Schedule Name="">
    <Schedule Type="Weekly">
        <Day>Sunday</Day>
        <Day>Saturday</Day>
    </Schedule>
</Schedule>