Class ResponsePredicateResult
- java.lang.Object
-
- io.vertx.rxjava.ext.web.client.predicate.ResponsePredicateResult
-
- All Implemented Interfaces:
RxDelegate
@Deprecated public class ResponsePredicateResult extends Object implements RxDelegate
Deprecated.Represents the outcome of aResponsePredicate
applied to an . NOTE: This class has been automatically generated from theoriginal
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ResponsePredicateResult>
__TYPE_ARG
Deprecated.
-
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 boolean
equals(Object o)
Deprecated.static ResponsePredicateResult
failure(String message)
Deprecated.ResponsePredicateResult
getDelegate()
Deprecated.int
hashCode()
Deprecated.String
message()
Deprecated.static ResponsePredicateResult
newInstance(ResponsePredicateResult arg)
Deprecated.HttpResponse<Buffer>
response()
Deprecated.boolean
succeeded()
Deprecated.static ResponsePredicateResult
success()
Deprecated.String
toString()
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:
getDelegate
in 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:
true
if theResponsePredicate
was 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:
null
after the result has been created, or the tested response for converters created withErrorConverter.createFullBody(java.util.function.Function<io.vertx.rxjava.ext.web.client.predicate.ResponsePredicateResult, java.lang.Throwable>)
-
newInstance
public static ResponsePredicateResult newInstance(ResponsePredicateResult arg)
Deprecated.
-
-