Pipe By Pipe By Get Doc Object For Review Pipe Outcome ? #12986
-
Hello Team, Can Get Doc Object at Pipe execution Over For review Doc Outcome ? Use Cases,
Team, If you need example dataset of above points , Please update me. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
We currently don't have any callbacks on pipe completion, but I can think of two ways to go about. First, you could make a loop calling the pipes similar to how
You shouldn't use this in production code, since |
Beta Was this translation helpful? Give feedback.
We currently don't have any callbacks on pipe completion, but I can think of two ways to go about. First, you could make a loop calling the pipes similar to how
Language
does:You shouldn't use this in production code, since
Language
does many additional things, but it can be ok for debugging. The other option is to make a custom pipe component. This component could just return the doc as-is, but you could insert your instrumentation code into it. You could then use this component after the pipe(s) that you want to instrument.