Uses of Class
org.apache.hc.core5.jackson2.http.AsyncJsonClientPipeline.ResultStage
Packages that use AsyncJsonClientPipeline.ResultStage
-
Uses of AsyncJsonClientPipeline.ResultStage in org.apache.hc.core5.jackson2.http
Methods in org.apache.hc.core5.jackson2.http that return AsyncJsonClientPipeline.ResultStageModifier and TypeMethodDescriptionAsyncJsonClientPipeline.ResponseContentStage.asEvents(JsonConsumer<HttpResponse> responseValidator, Callback<com.fasterxml.jackson.databind.JsonNode> errorCallback, JsonTokenEventHandler eventHandler) Configures the pipeline to process the incoming response content as a sequence of events.AsyncJsonClientPipeline.ResultStage<Message<HttpResponse,com.fasterxml.jackson.databind.JsonNode>> AsyncJsonClientPipeline.ResponseContentStage.asJsonNode()Configures the pipeline to process the incoming response content as aJsonNodeinstance.AsyncJsonClientPipeline.ResponseContentStage.asObject(com.fasterxml.jackson.core.type.TypeReference<T> typeReference) Configures the pipeline to process the incoming response content as an object with the givenTypeReference.AsyncJsonClientPipeline.ResponseContentStage.asObject(com.fasterxml.jackson.databind.JavaType javaType) Configures the pipeline to process the incoming response content as an object with the givenJavaType.Configures the pipeline to process the incoming response content as an object with the givenClass.AsyncJsonClientPipeline.ResponseContentStage.asSequence(com.fasterxml.jackson.core.type.TypeReference<T> typeReference, JsonConsumer<HttpResponse> responseValidator, Callback<com.fasterxml.jackson.databind.JsonNode> errorCallback, JsonResultSink<T> resultSink) Configures the pipeline to process the incoming response content as a sequence of objects with the givenTypeReference.AsyncJsonClientPipeline.ResponseContentStage.asSequence(com.fasterxml.jackson.databind.JavaType javaType, JsonConsumer<HttpResponse> responseValidator, Callback<com.fasterxml.jackson.databind.JsonNode> errorCallback, JsonResultSink<T> resultSink) Configures the pipeline to process the incoming response content as a sequence of objects with the givenJavaType.AsyncJsonClientPipeline.ResponseContentStage.asSequence(Class<T> clazz, JsonConsumer<HttpResponse> responseValidator, Callback<com.fasterxml.jackson.databind.JsonNode> errorCallback, JsonResultSink<T> resultSink) Configures the pipeline to process the incoming response content as a sequence of objects with the givenClass.AsyncJsonClientPipeline.ResponseContentStage.consume(HandlerResolver<HttpResponse, AsyncResponseConsumer<T>> responseConsumerResolver) ConfiguresAsyncResponseConsumerto be used by the pipeline to process the incoming response message stream.