private void OnGraphSaved(object sender, EventArgs e) { if (null == this.runner) // Running in headless mode. { return; } GraphController controller = sender as GraphController; if (null != controller) { LiveRunner liveRunner = runner as LiveRunner; //Update the options with new path. liveRunner.SetOptions(LiveRunnerFactory.CreateLiveRunnerOptions(controller)); GraphUtilities.SetRootModulePath(controller.FilePath); } }
public PropertyChangedTask(LiveRunner runner, GraphNode graphNode) : base(runner) { objectCreationGraphNode = graphNode; }
public NodeValueRequestTask(uint nodeId, LiveRunner runner) : base(runner) { this.nodeId = nodeId; }
public ConvertNodesToCodeTask(List<SnapshotNode> snapshotNodes, LiveRunner runner) : base(runner) { if (null == snapshotNodes || (snapshotNodes.Count <= 0)) throw new ArgumentException("snapshotNodes", "Invalid SnapshotNode list (35CA7759D0C9)"); this.snapshotNodes = snapshotNodes; }
public UpdateGraphTask(SynchronizeData syncData, LiveRunner runner) : base(runner) { this.syncData = syncData; }
public UpdateCmdLineInterpreterTask(string code, LiveRunner runner) : base(runner) { this.cmdLineString = code; }
protected Task(LiveRunner runner) { this.runner = runner; }