cronNewcronNew
create new scheduled jobs
Home > Books > NetKernel API and Services Reference > Accessor Listing > Cron Scheduled Jobs > cronNew

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:util:cron

The cronNew accessor is exported by the urn:org:ten60:netkernel:util:cron module. Import this module to gain access to the accessor.

Syntax

URI
active:cronNew

ArgumentRulesDescription
jobMandatory the job specification to be created

Example Usage

DPML

<instr>
  <type>cronNew</type>
  <job>
    <job>
      <uri>ffcpl:/server/reset</uri>
      <name>Reset Server</name>
      <desc>reset server in 1 minute</desc>
      <simple>
        <startTime>60000</startTime>
      </simple>
    </job>
  </job>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:cronNew");
req.addArgument("job", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The cronNew accessor provides the means to add new entries to the Cron transport's list of scheduled jobs. The accessor takes a standard job specification document as the job argument. The scheduled jobs will be added to the context of the requesting module which invokes this accessor, providing isolation between modules.

An exception will be thrown if the job doesn't conform to the job schema or if the job name is not unique.

Also see also the cron guide.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.