BatchTaskBundleAssembler Class [AX 2012]

The BatchTaskBundleAssembler class assembles derivatives of the BatchTaskBundle class and then schedules them for execution.

Syntax

class BatchTaskBundleAssembler

Run On

Server

Methods

  Method Description
Gg755787.pubmethod(en-us,AX.60).gif addTask Adds a task to a bundle.
Gg755787.pubmethod(en-us,AX.60).gif cancelTimeOut Cancels a previous method call to the setTimeOut method. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif equal Determines whether the specified object is equal to the current one. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif getTimeOutTimerHandle Returns the timer handle for the object. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif handle Retrieves the handle of the class of the object. (Inherited from Object.)
Gg755787.protmethod(en-us,AX.60).gif new Creates a new instance of the BatchTaskBundleAssembler class.
Gg755787.pubmethod(en-us,AX.60).gif notify Releases the hold on an object that has called the wait method on this object. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif notifyAll Releases a lock on the object that was issued by the wait method on this object. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif objectOnServer Determines whether the object is on a server. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif owner Returns the instance that owns the object. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif scheduleBundledTasks Schedules the bundled tasks to be executed by the batch framework.
Gg755787.pubmethod(en-us,AX.60).gif setTimeOut Sets up the scheduled execution of a specified method. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif toString Returns a string that represents the current object. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif usageCount Returns the current number of references, that is, the value of the reference counter, that the object has. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif wait Pauses a process. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif xml Returns an XML string that represents the current object. (Inherited from Object.)
Gg755787.pubmethod(en-us,AX.60).gif Gg755787.static(en-us,AX.60).gif ::construct Constructs a new instance of the BatchTaskBundleAssembler class.

Top

Remarks

This class is the interface of the batch task bundling framework. The tasks bundled by instances of this class must have the following properties:

  • Self recoverable - The process orchestrated by the task must persist state to the database so that in can be executed any number of times without ill effects.

  • Independent - There can be no order of execution dependencies between tasks.

  • Must fully implement the SysPackable interface - The pack and unpack methods and the static create method must be implemented. Every class field accessed in the run method of the task must be fully serialized.

Inheritance Hierarchy

Object Class
  BatchTaskBundleAssembler Class