InterviewSolution
Saved Bookmarks
| 1. |
How can the existing pipeline be preserved before the restorePipeline step? |
|
Answer» Pipelines are STORED in memory using the pub.flow:savePipeline service, and can be retrieved later with the pub.flow:restorePipeline service. There is an INPUT parameter in restorePipeline called $merge that indicates whether the values in the existing pipeline should be merged with those in the saved pipeline. You can set $merge to "true" or "false".
You can preserve the existing pipeline by setting the "$merge" variable in restorePipeline to true. In this way, everything in the pipeline is preserved before the restorePipeline step. |
|