Example #1
0
    public void Process(SIGGraph graph)
    {
        this.graph = graph;
        var task = this.task;

        this.task = null;

        Process(true);

        this.task = task;
    }
Example #2
0
 public void RunTask(SIGTask task)
 {
     this.task = task;
     Process(true);
 }