/*
 * Copyright 2018 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.ext.web.client.predicate;

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.impl.NoStackTraceThrowable;
import io.vertx.ext.web.client.impl.predicate.ErrorConverterImpl;

import java.util.function.Function;

Converts a ResponsePredicateResult to a Throwable describing the error.
Author:Thomas Segismont
/** * Converts a {@link ResponsePredicateResult} to a {@code Throwable} describing the error. * * @author Thomas Segismont */
@FunctionalInterface @VertxGen public interface ErrorConverter { ErrorConverter DEFAULT_CONVERTER = result -> { String message = result.message(); return message == null ? null : new NoStackTraceThrowable(message); };
Creates a full ErrorConverter, that will passed a predicate result with the response body.

The converter function will be invoked after the HTTP response body is received.

Params:
/** * Creates a full {@link ErrorConverter}, that will passed a predicate result with the response body. * * <p>The {@code converter} function will be invoked <em>after</em> the HTTP response body is received. * * @param converter a function creating a {@link Throwable} from a {@link ResponsePredicateResult} */
static ErrorConverter create(Function<ResponsePredicateResult, Throwable> converter) { return converter::apply; }
Creates a full ErrorConverter, that will passed a predicate result with the response body.

The converter function will be invoked after the HTTP response body is received.

Params:
/** * Creates a full {@link ErrorConverter}, that will passed a predicate result with the response body. * * <p>The {@code converter} function will be invoked <em>after</em> the HTTP response body is received. * * @param converter a function creating a {@link Throwable} from a {@link ResponsePredicateResult} */
static ErrorConverter createFullBody(Function<ResponsePredicateResult, Throwable> converter) { return new ErrorConverterImpl(converter, true); } Throwable apply(ResponsePredicateResult result);
Returns:true when the converter wants to process the request body.
/** * @return {@code true} when the converter wants to process the request body. */
default boolean requiresBody() { return false; } }