Class ResponsePredicateResult
- java.lang.Object
-
- io.vertx.reactivex.ext.web.client.predicate.ResponsePredicateResult
-
- All Implemented Interfaces:
RxDelegate
@Deprecated public class ResponsePredicateResult extends Object implements RxDelegate
Deprecated.Represents the outcome of aResponsePredicateapplied to an . NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ResponsePredicateResult>__TYPE_ARGDeprecated.
-
Constructor Summary
Constructors Constructor Description ResponsePredicateResult(ResponsePredicateResult delegate)Deprecated.ResponsePredicateResult(Object delegate)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object o)Deprecated.static ResponsePredicateResultfailure(String message)Deprecated.ResponsePredicateResultgetDelegate()Deprecated.inthashCode()Deprecated.Stringmessage()Deprecated.static ResponsePredicateResultnewInstance(ResponsePredicateResult arg)Deprecated.HttpResponse<Buffer>response()Deprecated.booleansucceeded()Deprecated.static ResponsePredicateResultsuccess()Deprecated.StringtoString()Deprecated.
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ResponsePredicateResult> __TYPE_ARG
Deprecated.
-
-
Constructor Detail
-
ResponsePredicateResult
public ResponsePredicateResult(ResponsePredicateResult delegate)
Deprecated.
-
ResponsePredicateResult
public ResponsePredicateResult(Object delegate)
Deprecated.
-
-
Method Detail
-
getDelegate
public ResponsePredicateResult getDelegate()
Deprecated.- Specified by:
getDelegatein interfaceRxDelegate
-
success
@Deprecated public static ResponsePredicateResult success()
Deprecated.- Returns:
- a successful result
-
failure
@Deprecated public static ResponsePredicateResult failure(String message)
Deprecated.Creates a failed result.- Parameters:
message- the failure description- Returns:
-
succeeded
@Deprecated public boolean succeeded()
Deprecated.Whether the result is a success or failure.- Returns:
trueif theResponsePredicatewas applied successfully, false otherwise
-
message
@Deprecated public String message()
Deprecated.The failure message. May benull.- Returns:
-
response
@Deprecated public HttpResponse<Buffer> response()
Deprecated.The which has been tested.- Returns:
nullafter the result has been created, or the tested response for converters created withErrorConverter.createFullBody(java.util.function.Function<io.vertx.reactivex.ext.web.client.predicate.ResponsePredicateResult, java.lang.Throwable>)
-
newInstance
public static ResponsePredicateResult newInstance(ResponsePredicateResult arg)
Deprecated.
-
-