cronDeletecronDelete
delete scheduled jobs
Home > Books > NetKernel API and Services Reference > Accessor Listing > Cron Scheduled Jobs > cronDelete

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


Module

urn:org:ten60:netkernel:util:cron

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

Syntax

URI
active:cronDelete

ArgumentRulesDescription
jobMandatory the job name to delete

Example Usage

DPML

<instr>
  <type>cronDelete</type>
  <job>
    <job>
      <name>Reset Server</name>
    </job>
  </job>
  <target>var:isDeleted</target>
</instr>

NetKernel Foundation API

import com.ten60.netkernel.urii.aspect.IAspectBoolean;
import org.ten60.netkernel.layer1.representation.StringAspect;
main()
{ jobName="Reset Server";
  request = context.createSubRequest("active:cronDelete");
  request.addArgument("job",new StringAspect("<job><name>"+jobName+"</name></job>"));
  request.setAspectClass(IAspectBoolean.class);
  isDeleted = context.issueSubRequestForAspect(request).isTrue();
}

Purpose

The cronDelete accessor provides a means for deleting entries in the Cron transport's scheduled job list. The accessor takes an XML document with a <name> child element providing the unique name of the job to remove.

A boolean value is returned indicating if the job was deleted.

See also the cron guide.

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