ExtractedValueExtension<M> extension
提取后的对象链式调用扩展 支持在提取对象后继续链式调用,对象在链路中传递
- on
-
- Future<
M?>
- Future<
Methods
-
thenWith<
R, E> (Future< Response< nextRequest(M extracted), {E? extractor(Response<R> >R> response)?, M updater(M extracted, E? extractedValue)?}) → Future<ChainResult< M, R> > -
Available on Future<
链式调用:传递提取后的对象给下一个请求 返回 ChainResult,对象在链路中传递M?> , provided by the ExtractedValueExtension extension -
thenWithExtract<
R> (Future< Response> nextRequest(M extracted), R? finalExtractor(Response response)) → Future<R?> -
Available on Future<
链式调用:传递提取后的对象给下一个请求,并提取最终结果 如果任何一步失败,返回 nullM?> , provided by the ExtractedValueExtension extension