Module: IMetabaseObjectDescriptor;
The Module property determines the assembly, unit or form, running of which executes an operation.
The assembly, unit or form must contain functions with the Function <name> (<param>: IScheduledTask): Boolean signature.
The property is relevant if IScheduledTask.CreateChecker = ScheduledTaskCheckerType.Module.
Executing the example requires:
Scheduled tasks container with the TASK_CONTAINER identifier that contains a task.
Unit with the CHECK_FUNCTION identifier that contains a function with the CHECK_FUNCTION identifier.
Add links to the Metabase, Fore system assemblies.
Sub UserProc;
Var
MB: IMetabase;
cont: IScheduledTasksContainer;
task: IScheduledTask;
TChecker: IScheduledTaskChecker;
ModuleChecker: IScheduledTaskModuleChecker;
Begin
MB := metabaseClass.Active;
cont := MB.ItemById("TASK_CONTAINER").Edit As IScheduledTasksContainer;
task := cont.Tasks.Item(0).Edit As IScheduledTask;
TChecker := task.CreateChecker(ScheduledTaskCheckerType.Module);
ModuleChecker := TChecker As IScheduledTaskModuleChecker;
Debug.WriteLine("Task execution condition is set: ");
Select Case (TChecker.Type As Integer)
Case 0: Debug.WriteLine(" - Execute task if function is performed with result");
Case 1: Debug.WriteLine(" - Execute task if validation rule is performed with result");
End Select;
If TChecker.Check = False Then
ModuleChecker.Module := MB.ItemById("CHECK").Bind;
ModuleChecker.Macro := "CHECK_FUNCTION";
ModuleChecker.ExpectedResult := True;
Else
Debug.WriteLine(TChecker.CheckMsg);
End If;
task.TaskChecker := TChecker;
(task As IMetabaseObject).Save;
End Sub UserProc;
After executing the example, task execution setup conditions are set:
The Execute Task if Function is Performed with Result task execution condition is set.
Unit and function with specified identifiers are selected.
Result of function performing "true" is set.
See also: