--- BaseNode Implementation for BatchNode ---
(params map[string]any)
| 412 | // --- BaseNode Implementation for BatchNode --- |
| 413 | |
| 414 | func (bn *BatchNode) SetParams(params map[string]any) BaseNode { |
| 415 | bn.nodeCore.SetParams(params) |
| 416 | return bn |
| 417 | } |
| 418 | |
| 419 | func (bn *BatchNode) Next(action string, node BaseNode) BaseNode { |
| 420 | return bn.nodeCore.Next(action, node) |