Uses of Class
io.vertx.ext.healthchecks.CheckResult
-
-
Uses of CheckResult in io.vertx.ext.healthchecks
Methods in io.vertx.ext.healthchecks that return CheckResult Modifier and Type Method Description static CheckResult
CheckResult. from(String name, Status status)
static CheckResult
CheckResult. from(String name, Throwable e)
CheckResult
CheckResult. setChecks(List<CheckResult> checks)
CheckResult
CheckResult. setFailure(Throwable failure)
CheckResult
CheckResult. setId(String id)
CheckResult
CheckResult. setStatus(Status status)
Methods in io.vertx.ext.healthchecks that return types with arguments of type CheckResult Modifier and Type Method Description Future<CheckResult>
HealthChecks. checkStatus()
Invokes the registered procedures.Future<CheckResult>
HealthChecks. checkStatus(String name)
Invokes the registered procedure with the given name and sub-procedures.List<CheckResult>
CheckResult. getChecks()
Methods in io.vertx.ext.healthchecks with parameters of type CheckResult Modifier and Type Method Description static boolean
CheckResult. isUp(CheckResult json)
Method parameters in io.vertx.ext.healthchecks with type arguments of type CheckResult Modifier and Type Method Description static boolean
CheckResult. isUp(Future<CheckResult> json)
CheckResult
CheckResult. setChecks(List<CheckResult> checks)
-
Uses of CheckResult in io.vertx.ext.web.healthchecks
Method parameters in io.vertx.ext.web.healthchecks with type arguments of type CheckResult Modifier and Type Method Description HealthCheckHandler
HealthCheckHandler. resultMapper(java.util.function.Function<CheckResult,Future<CheckResult>> resultMapper)
Sets a function which will be invoked before theCheckResult
gets written to clients.HealthCheckHandler
HealthCheckHandler. resultMapper(java.util.function.Function<CheckResult,Future<CheckResult>> resultMapper)
Sets a function which will be invoked before theCheckResult
gets written to clients. -
Uses of CheckResult in io.vertx.reactivex.ext.healthchecks
Methods in io.vertx.reactivex.ext.healthchecks that return types with arguments of type CheckResult Modifier and Type Method Description Future<CheckResult>
HealthChecks. checkStatus()
Invokes the registered procedures.Future<CheckResult>
HealthChecks. checkStatus(String name)
Invokes the registered procedure with the given name and sub-procedures.Single<CheckResult>
HealthChecks. rxCheckStatus()
Invokes the registered procedures.Single<CheckResult>
HealthChecks. rxCheckStatus(String name)
Invokes the registered procedure with the given name and sub-procedures. -
Uses of CheckResult in io.vertx.reactivex.ext.web.healthchecks
Method parameters in io.vertx.reactivex.ext.web.healthchecks with type arguments of type CheckResult Modifier and Type Method Description HealthCheckHandler
HealthCheckHandler. resultMapper(Function<CheckResult,Single<CheckResult>> resultMapper)
Sets a function which will be invoked before the gets written to clients.HealthCheckHandler
HealthCheckHandler. resultMapper(Function<CheckResult,Single<CheckResult>> resultMapper)
Sets a function which will be invoked before the gets written to clients.HealthCheckHandler
HealthCheckHandler. resultMapper(java.util.function.Function<CheckResult,Future<CheckResult>> resultMapper)
Sets a function which will be invoked before the gets written to clients.HealthCheckHandler
HealthCheckHandler. resultMapper(java.util.function.Function<CheckResult,Future<CheckResult>> resultMapper)
Sets a function which will be invoked before the gets written to clients. -
Uses of CheckResult in io.vertx.rxjava3.ext.healthchecks
Methods in io.vertx.rxjava3.ext.healthchecks that return types with arguments of type CheckResult Modifier and Type Method Description Single<CheckResult>
HealthChecks. checkStatus()
Invokes the registered procedures.Single<CheckResult>
HealthChecks. checkStatus(String name)
Invokes the registered procedure with the given name and sub-procedures.Single<CheckResult>
HealthChecks. rxCheckStatus()
Invokes the registered procedures.Single<CheckResult>
HealthChecks. rxCheckStatus(String name)
Invokes the registered procedure with the given name and sub-procedures. -
Uses of CheckResult in io.vertx.rxjava3.ext.web.healthchecks
Method parameters in io.vertx.rxjava3.ext.web.healthchecks with type arguments of type CheckResult Modifier and Type Method Description HealthCheckHandler
HealthCheckHandler. resultMapper(java.util.function.Function<CheckResult,Single<CheckResult>> resultMapper)
Sets a function which will be invoked before the gets written to clients.HealthCheckHandler
HealthCheckHandler. resultMapper(java.util.function.Function<CheckResult,Single<CheckResult>> resultMapper)
Sets a function which will be invoked before the gets written to clients.
-