All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.edc.http.spi.EdcHttpClient Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
/*
 *  Copyright (c) 2022 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
 *
 *  This program and the accompanying materials are made available under the
 *  terms of the Apache License, Version 2.0 which is available at
 *  https://www.apache.org/licenses/LICENSE-2.0
 *
 *  SPDX-License-Identifier: Apache-2.0
 *
 *  Contributors:
 *       Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation
 *
 */

package org.eclipse.edc.http.spi;

import okhttp3.Request;
import okhttp3.Response;
import org.eclipse.edc.spi.result.Result;

import java.io.IOException;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.function.Function;

/**
 * HTTP client service, it wraps {@link okhttp3.OkHttpClient} and provides retry mechanism out of the box.
 */
public interface EdcHttpClient {

    /**
     * Executes the specified request synchronously.
     *
     * @param request the {@link Request}.
     * @return a {@link Response}, must be closed explicitly after consumption
     * @throws IOException on connection error.
     */
    Response execute(Request request) throws IOException;

    /**
     * Executes the specified request synchronously.
     * Accepts a list of {@link FallbackFactories} that could apply retry in particular occasions.
     *
     * @param request the {@link Request}.
     * @param fallbacks a list of fallbacks to be applied.
     * @return a {@link Response}, must be closed explicitly after consumption
     * @throws IOException on connection error.
     */
    Response execute(Request request, List fallbacks) throws IOException;

    /**
     * Executes the specified request synchronously applying the mapping function to the response.
     *
     * @param request the {@link Request}.
     *                @param mappingFunction the function that will be applied to the {@link Response}.
     * @return a {@link Result}, containing the object returned by the mappingFunction
     */
     Result execute(Request request, Function> mappingFunction);

    /**
     * Executes the specified request synchronously applying the mapping function to the response.
     * Accepts a list of {@link FallbackFactories} that could apply retry in particular occasions.
     *
     * @param request the {@link Request}.
     * @param fallbacks a list of fallbacks to be applied.
     * @param mappingFunction the function that will be applied to the {@link Response}.
     * @return a {@link Result}, containing the object returned by the mappingFunction
     */
     Result execute(Request request, List fallbacks, Function> mappingFunction);

    /**
     * Executes the specified request asynchronously and returns the response.
     * Accepts a list of {@link FallbackFactories} that could apply retry in particular occasions.
     *
     * @param request the {@link Request}.
     * @param fallbacks a list of fallbacks to be applied.
     * @return a {@link CompletableFuture} containing the {@link Response} instance.
     */
    CompletableFuture executeAsync(Request request, List fallbacks);

    /**
     * Returns a new client instance with a custom dns server set.
     *
     * @param dnsServer the url of a dns server
     * @return a new client instance with the dns server set.
     */
    EdcHttpClient withDns(String dnsServer);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy