WithWatch tells the [Executor] to keep running in the background and watch for changes to the fingerprint of the tasks that are run. When changes are detected, a new task run is triggered.
(watch bool)
| 350 | // for changes to the fingerprint of the tasks that are run. When changes are |
| 351 | // detected, a new task run is triggered. |
| 352 | func WithWatch(watch bool) ExecutorOption { |
| 353 | return &watchOption{watch} |
| 354 | } |
| 355 | |
| 356 | type watchOption struct { |
| 357 | watch bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…