NotifyJobStatus sends a status update for a config.
(cfg C, status Status)
| 406 | |
| 407 | // NotifyJobStatus sends a status update for a config. |
| 408 | func (h *Handler[C]) NotifyJobStatus(cfg C, status Status) { |
| 409 | h.api.ConfigStatus(h.cb.ConfigID(cfg), status) |
| 410 | } |
| 411 | |
| 412 | // NotifyJobRemove removes a config from the dyncfg API. |
| 413 | func (h *Handler[C]) NotifyJobRemove(cfg C) { |
no test coverage detected