How to Create Dependent Tasks in HPC
ISchedulerTask
task1 = job.CreateTask();
task.CommandLine = cmdparams1;
job.AddTask(task1);
ISchedulerTask task2 = job.CreateTask();
task.CommandLine = cmdparams2;
job.AddTask(task2);
Here task2 is Depedends on task1. How to Create this Dependency?
Thanks in Advance
Murthy PVASn