Uses of Class
io.vertx.core.eventbus.ReplyFailure
-
Packages that use ReplyFailure Package Description io.vertx.core.eventbus io.vertx.core.spi.metrics -
-
Uses of ReplyFailure in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return ReplyFailure Modifier and Type Method Description ReplyFailure
ReplyException. failureType()
Get the failure type for the messagestatic ReplyFailure
ReplyFailure. fromInt(int i)
static ReplyFailure
ReplyFailure. valueOf(String name)
Returns the enum constant of this type with the specified name.static ReplyFailure[]
ReplyFailure. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.vertx.core.eventbus with parameters of type ReplyFailure Constructor Description ReplyException(ReplyFailure failureType)
Create a ReplyExceptionReplyException(ReplyFailure failureType, int failureCode, String message)
Create a ReplyExceptionReplyException(ReplyFailure failureType, int failureCode, String message, boolean noStackTrace)
Create a ReplyException with all attributes.ReplyException(ReplyFailure failureType, int failureCode, String message, Throwable cause, boolean noStackTrace)
Create a ReplyException with all attributes, including cause.
DefaultReplyExceptionMessageCodec
doesn't support Cause!
This ctor is meant to be used for extension, together with a custom codec.ReplyException(ReplyFailure failureType, String message)
Create a ReplyException -
Uses of ReplyFailure in io.vertx.core.spi.metrics
Methods in io.vertx.core.spi.metrics with parameters of type ReplyFailure Modifier and Type Method Description default void
EventBusMetrics. replyFailure(String address, ReplyFailure failure)
Called whenever the event bus delivers a reply failure to the sender/publisher, thereply failure
indicates the nature of the failure.
-