class %SYS.Task.IntegrityCheck
extends %SYS.Task.Definition
parameter TaskName = "IntegrityCheck";
This defines the user-visible name of this task;
This is defined in subclasses.
property Directory
as %String [ InitialExpression = $zu(12) ];
property Filename
as %String [ InitialExpression = "INTEGRIT.LOG" ];
classmethod DirectoryIsValid(Directory As %String)
as %Status
method OnTask()
as %Status
This method is responsible for executing the task.
At the scheduled time, the Task Manager creates an instance of this object,
sets any property values using the stored "settings" for the task, and then
invokes this method to execute the task.
In order to execute a real task, override this method in a subclass.