Skip navigation links
C F G H I K O R S T U 

C

CheckResult - Class in io.vertx.ext.healthchecks
 
CheckResult() - Constructor for class io.vertx.ext.healthchecks.CheckResult
 
checkStatus(Handler<AsyncResult<CheckResult>>) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Invokes the registered procedures.
checkStatus() - Method in interface io.vertx.ext.healthchecks.HealthChecks
Like HealthChecks.checkStatus(Handler) but returns a Future of the asynchronous result
checkStatus(String, Handler<AsyncResult<CheckResult>>) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Invokes the registered procedure with the given name and sub-procedures.
checkStatus(String) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Like HealthChecks.checkStatus(String, Handler) but returns a Future of the asynchronous result
create(Vertx, AuthenticationProvider) - Static method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Creates an instance of the default implementation of the HealthCheckHandler.
create(Vertx) - Static method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Creates an instance of the default implementation of the HealthCheckHandler.
create(Vertx) - Static method in interface io.vertx.ext.healthchecks.HealthChecks
Creates a new instance of the default implementation of HealthChecks.
createWithHealthChecks(HealthChecks, AuthenticationProvider) - Static method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Creates an instance of the default implementation of the HealthCheckHandler.
createWithHealthChecks(HealthChecks) - Static method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Creates an instance of the default implementation of the HealthCheckHandler.

F

from(String, Status) - Static method in class io.vertx.ext.healthchecks.CheckResult
 
from(String, Throwable) - Static method in class io.vertx.ext.healthchecks.CheckResult
 
fromJson(Iterable<Map.Entry<String, Object>>, Status) - Static method in class io.vertx.ext.healthchecks.StatusConverter
 

G

getChecks() - Method in class io.vertx.ext.healthchecks.CheckResult
 
getData() - Method in class io.vertx.ext.healthchecks.CheckResult
 
getData() - Method in class io.vertx.ext.healthchecks.Status
 
getFailure() - Method in class io.vertx.ext.healthchecks.CheckResult
 
getId() - Method in class io.vertx.ext.healthchecks.CheckResult
 
getStatus() - Method in class io.vertx.ext.healthchecks.CheckResult
 
getUp() - Method in class io.vertx.ext.healthchecks.CheckResult
 

H

HealthCheckHandler - Interface in io.vertx.ext.healthchecks
A Vert.x Web handler on which you register health check procedure.
HealthChecks - Interface in io.vertx.ext.healthchecks
 

I

invoke(Handler<JsonObject>) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Invokes the registered procedures and computes the outcome.
invoke(String, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Invokes the registered procedure with the given name and sub-procedures.
invoke(String) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Like HealthChecks.invoke(String, Handler) but with a future of the result.
io.vertx.ext.healthchecks - package io.vertx.ext.healthchecks
 
isOk() - Method in class io.vertx.ext.healthchecks.Status
 
isProcedureInError() - Method in class io.vertx.ext.healthchecks.Status
 
isUp(Future<CheckResult>) - Static method in class io.vertx.ext.healthchecks.CheckResult
 
isUp(CheckResult) - Static method in class io.vertx.ext.healthchecks.CheckResult
 

K

KO() - Static method in class io.vertx.ext.healthchecks.Status
Creates a status when something bad is detected.
KO(JsonObject) - Static method in class io.vertx.ext.healthchecks.Status
Creates a status when something bad is detected.

O

OK() - Static method in class io.vertx.ext.healthchecks.Status
Creates a status when everything is fine.
OK(JsonObject) - Static method in class io.vertx.ext.healthchecks.Status
Creates a status when everything is fine and adds metadata.

R

register(String, Handler<Promise<Status>>) - Method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Registers a health check procedure.
register(String, long, Handler<Promise<Status>>) - Method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Registers a health check procedure.
register(String, Handler<Promise<Status>>) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Registers a health check procedure.
register(String, long, Handler<Promise<Status>>) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Registers a health check procedure.

S

setChecks(List<CheckResult>) - Method in class io.vertx.ext.healthchecks.CheckResult
 
setData(JsonObject) - Method in class io.vertx.ext.healthchecks.Status
Sets the metadata.
setFailure(Throwable) - Method in class io.vertx.ext.healthchecks.CheckResult
 
setId(String) - Method in class io.vertx.ext.healthchecks.CheckResult
 
setKO() - Method in class io.vertx.ext.healthchecks.Status
Sets the outcome of the status to KO.
setOk(boolean) - Method in class io.vertx.ext.healthchecks.Status
Sets whether or not the current status is positive (UP) or negative (DOWN).
setOK() - Method in class io.vertx.ext.healthchecks.Status
Sets the outcome of the status to OK.
setProcedureInError(boolean) - Method in class io.vertx.ext.healthchecks.Status
Sets whether or not the procedure attached to this status has failed (timeout, error...).
setStatus(Status) - Method in class io.vertx.ext.healthchecks.CheckResult
 
Status - Class in io.vertx.ext.healthchecks
Represents the outcome of a health check procedure.
Status() - Constructor for class io.vertx.ext.healthchecks.Status
Creates a new instance of Status with default values.
Status(Status) - Constructor for class io.vertx.ext.healthchecks.Status
Creates a new instance of Status by copying the given Status.
Status(JsonObject) - Constructor for class io.vertx.ext.healthchecks.Status
Creates a new instance of Status from the given JSON structure.
StatusConverter - Class in io.vertx.ext.healthchecks
Converter and mapper for Status.
StatusConverter() - Constructor for class io.vertx.ext.healthchecks.StatusConverter
 

T

toJson() - Method in class io.vertx.ext.healthchecks.CheckResult
Get a JSON version of this result, it computes the overall outcome.
toJson() - Method in class io.vertx.ext.healthchecks.Status
Builds the JSON representation of the current Status instance.
toJson(Status, JsonObject) - Static method in class io.vertx.ext.healthchecks.StatusConverter
 
toJson(Status, Map<String, Object>) - Static method in class io.vertx.ext.healthchecks.StatusConverter
 

U

unregister(String) - Method in interface io.vertx.ext.healthchecks.HealthCheckHandler
Unregisters a procedure.
unregister(String) - Method in interface io.vertx.ext.healthchecks.HealthChecks
Unregisters a procedure.
C F G H I K O R S T U 
Skip navigation links

Copyright © 2021 Eclipse. All rights reserved.