(ctx context.Context, key string, nodeID string, value *wfv1.Outputs)
| 17 | type MemoizationCache interface { |
| 18 | Load(ctx context.Context, key string) (*Entry, error) |
| 19 | Save(ctx context.Context, key string, nodeID string, value *wfv1.Outputs) error |
| 20 | } |
| 21 | |
| 22 | type Entry struct { |
no outgoing calls