Heartbeat sends push-based health signals to monitoring services.
| 4 | |
| 5 | // Heartbeat sends push-based health signals to monitoring services. |
| 6 | type Heartbeat interface { |
| 7 | // Ping sends a heartbeat signal indicating successful task completion. |
| 8 | // Returns an error if the heartbeat could not be sent. |
| 9 | Ping(ctx context.Context) error |
| 10 | } |
no outgoing calls
no test coverage detected