类 EntityExchangeResult<T>

java.lang.Object
cn.taketoday.test.web.reactive.server.ExchangeResult
cn.taketoday.test.web.reactive.server.EntityExchangeResult<T>
类型参数:
T - the response body type

public class EntityExchangeResult<T> extends ExchangeResult
ExchangeResult sub-class that exposes the response body fully extracted to a representation of type <T>.
从以下版本开始:
4.0
作者:
Rossen Stoyanchev
另请参阅:
  • 字段详细资料

    • body

      @Nullable private final T body
  • 构造器详细资料

    • EntityExchangeResult

      EntityExchangeResult(ExchangeResult result, @Nullable T body)
  • 方法详细资料

    • getResponseBody

      @Nullable public T getResponseBody()
      Return the entity extracted from the response body.