@bian-womp/spark-graph 0.3.45 → 0.3.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.cjs +3 -3
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/cjs/src/runtime/GraphRuntime.d.ts +1 -1
- package/lib/cjs/src/runtime/GraphRuntime.d.ts.map +1 -1
- package/lib/esm/index.js +3 -3
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/src/runtime/GraphRuntime.d.ts +1 -1
- package/lib/esm/src/runtime/GraphRuntime.d.ts.map +1 -1
- package/package.json +2 -2
package/lib/cjs/index.cjs
CHANGED
|
@@ -3023,7 +3023,7 @@ class GraphRuntime {
|
|
|
3023
3023
|
// Initialize components
|
|
3024
3024
|
this.eventEmitter = new EventEmitter();
|
|
3025
3025
|
this.graph = new Graph(this.eventEmitter);
|
|
3026
|
-
this.runContextManager = new RunContextManager(this.graph, "
|
|
3026
|
+
this.runContextManager = new RunContextManager(this.graph, "info");
|
|
3027
3027
|
this.handleResolver = new HandleResolver(this.graph, this.eventEmitter, this.runContextManager, this);
|
|
3028
3028
|
this.edgePropagator = new EdgePropagator(this.graph, this.eventEmitter, this.runContextManager, this.handleResolver, this);
|
|
3029
3029
|
// Create NodeExecutor with EdgePropagator and HandleResolver
|
|
@@ -3719,8 +3719,8 @@ class GraphRuntime {
|
|
|
3719
3719
|
});
|
|
3720
3720
|
this.graph.clear();
|
|
3721
3721
|
}
|
|
3722
|
-
execute(nodeId, runContextIds,
|
|
3723
|
-
this.nodeExecutor.execute(nodeId, runContextIds,
|
|
3722
|
+
execute(nodeId, runContextIds, canSkipHandleResolution) {
|
|
3723
|
+
this.nodeExecutor.execute(nodeId, runContextIds, canSkipHandleResolution);
|
|
3724
3724
|
}
|
|
3725
3725
|
propagate(srcNodeId, srcHandle, value, runContextIds) {
|
|
3726
3726
|
this.edgePropagator.propagate(srcNodeId, srcHandle, value, runContextIds);
|