Versions Compared

Key

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

...

Code Block
<tasks>
    <task name="SampleTask" class="org.wso2.carbon.registry.samples.task.SampleTask">
        <trigger cron="0/10 * * * * ?"/>
        <property key="foo" value="FooVal" />
        <property key="bar" value="BarVal" />
    </task>
</tasks>

The attributes of the given above configuration can be defined as below.

  1. name - A name to distinguish this task from other tasks. This has to be a unique name in a single clustered or non-clustered deployment.

  2. class - The fully qualified name of the class implementing the org.wso2.carbon.ntask.core.Task interface. You can have more than one task having the same class.

  3. cron - http://quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger

  4. property - a property that is passed into the setProperties method of the Task implementation class. You can have more than zero or more properties for you task.
    1. key - the name of the property.
    2. value - the value of the property.

...