-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement health observers for base health types
- Loading branch information
Showing
6 changed files
with
682 additions
and
135 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
api/src/main/java/io/smallrye/health/api/event/HealthStatusChangeEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package io.smallrye.health.api.event; | ||
|
||
import java.time.Instant; | ||
|
||
import org.eclipse.microprofile.health.HealthCheckResponse; | ||
|
||
import io.smallrye.health.api.HealthType; | ||
|
||
/** | ||
* Event interface for the health state changes. | ||
*/ | ||
public interface HealthStatusChangeEvent { | ||
|
||
Instant timestamp(); | ||
|
||
HealthType healthType(); | ||
|
||
HealthCheckResponse.Status status(); | ||
} |
Oops, something went wrong.