Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If used outside of a do() or forEach() function then break() will cause the analysis for the Stream Set to stop as though a stop() function was called (but will produce an error message rather than a warning message). No records will be saved for that Stream Set.

if If used inside of a do() or forEach() function that is itself nested inside of another do() or forEach() function, break() will only exit the inner (nested) function call. The outer expression will continue to be evaluated in the usual way.

...