flowGraphExecutionBlockWithOutSignal.js 617 B

1234567891011121314
  1. import { FlowGraphExecutionBlock } from "./flowGraphExecutionBlock.js";
  2. /**
  3. * @experimental
  4. * An execution block that has an out signal. This signal is triggered when the synchronous execution of this block is done.
  5. * Most execution blocks will inherit from this, except for the ones that have multiple signals to be triggered.
  6. * (such as if blocks)
  7. */
  8. export class FlowGraphExecutionBlockWithOutSignal extends FlowGraphExecutionBlock {
  9. constructor(config) {
  10. super(config);
  11. this.out = this._registerSignalOutput("out");
  12. }
  13. }
  14. //# sourceMappingURL=flowGraphExecutionBlockWithOutSignal.js.map