SetPostBatch sets the function to run after all batches complete.
(f func(ctx *PfContext, params map[string]any, batchPrepResult []map[string]any) (string, error))
| 743 | |
| 744 | // SetPostBatch sets the function to run after all batches complete. |
| 745 | func (bf *BatchFlow) SetPostBatch(f func(ctx *PfContext, params map[string]any, batchPrepResult []map[string]any) (string, error)) *BatchFlow { |
| 746 | bf.PostBatchFunc = f |
| 747 | return bf |
| 748 | } |
| 749 | |
| 750 | // --- BaseNode Implementation Overrides for BatchFlow --- |
| 751 |
no outgoing calls