WithStore injects the durable task-domain store consumed by the manager.
(store Store)
| 132 | |
| 133 | // WithStore injects the durable task-domain store consumed by the manager. |
| 134 | func WithStore(store Store) Option { |
| 135 | return func(opts *managerOptions) { |
| 136 | opts.store = store |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | // WithSessionExecutor injects the runtime session bridge used by later |
| 141 | // task-run lifecycle operations. |
no outgoing calls