Uses of Interface
io.vertx.core.Expectation
- 
Packages that use Expectation Package Description io.vertx.core io.vertx.core.http io.vertx.reactivex.core io.vertx.rxjava3.core 
- 
- 
Uses of Expectation in io.vertx.coreMethods in io.vertx.core that return Expectation Modifier and Type Method Description default Expectation<V>Expectation. and(Expectation<? super V> other)Returned an expectation succeeding when this expectation and theotherexpectation succeeds.default Expectation<V>Expectation. or(Expectation<? super V> other)Returned an expectation succeeding when this expectation or theotherexpectation succeeds.default Expectation<V>Expectation. wrappingFailure(BiFunction<V,Throwable,Throwable> descriptor)Returns a new expectation with the same predicate and a customized errordescriptor.Methods in io.vertx.core with parameters of type Expectation Modifier and Type Method Description default Expectation<V>Expectation. and(Expectation<? super V> other)Returned an expectation succeeding when this expectation and theotherexpectation succeeds.Future<T>Future. expecting(Expectation<? super T> expectation)Guard the control flow of this future with an expectation.default Expectation<V>Expectation. or(Expectation<? super V> other)Returned an expectation succeeding when this expectation or theotherexpectation succeeds.
- 
Uses of Expectation in io.vertx.core.httpSubinterfaces of Expectation in io.vertx.core.http Modifier and Type Interface Description interfaceHttpResponseExpectationCommon expectations for HTTP responses.
- 
Uses of Expectation in io.vertx.reactivex.coreConstructors in io.vertx.reactivex.core with parameters of type Expectation Constructor Description ExpectationTransformer(Expectation<U> expectation, Function<T,U> unwrapper)
- 
Uses of Expectation in io.vertx.rxjava3.coreConstructors in io.vertx.rxjava3.core with parameters of type Expectation Constructor Description ExpectationTransformer(Expectation<U> expectation, Function<T,U> unwrapper)
 
-