wait

Wait for futures to be completed.

📝 Syntax

  • wait(f)

  • wait(f, state)

  • TF = wait(f, state, timeout)

📥 Input argument

  • f - FevalFuture object: scalar or array.

  • state - state to wait: 'finished' (default) or 'running'

  • timeout - seconds to wait: real numeric scalar.

📤 Output argument

  • TF - logical: If each element of the Future array f finishes before timeout seconds elapse, TF is true. Otherwise, TF is false.

📄 Description

wait(f) pauses execution until each element of the Future arrayf is finished.

wait(f, state) pauses execution until each element of the Future arrayf has its 'State' property set to state.

tf = wait(f, state, timeout) pauses execution for a maximum of timeout seconds.

💡 Example

🔗 See also

pause, fetchOutputs.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?