MCPcopy Index your code
hub / github.com/microsoft/SandDance / reentrant

Function reentrant

docs/app/js/sanddance-app.js:108552–108555  ·  view source on GitHub ↗

* Raise an error for re-entrant dataflow evaluation.

(df)

Source from the content-addressed store, hash-verified

108550/**
108551 * Raise an error for re-entrant dataflow evaluation.
108552 */ function reentrant(df) {
108553 df.error("Dataflow already running. Use runAsync() to chain invocations.");
108554 return df;
108555}
108556/**
108557 * Enqueue an operator into the priority queue for evaluation. The operator
108558 * will be enqueued if it has no registered pulse for the current cycle, or if

Callers 2

evaluateFunction · 0.70
runFunction · 0.70

Calls 1

errorMethod · 0.45

Tested by

no test coverage detected