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

org.zalando.riptide.GuardedRequestExecution Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.zalando.riptide;

import lombok.AllArgsConstructor;
import org.springframework.http.client.ClientHttpResponse;

import java.util.concurrent.CompletableFuture;

import static org.zalando.riptide.CompletableFutures.exceptionallyCompletedFuture;

@AllArgsConstructor
final class GuardedRequestExecution implements RequestExecution {

    private final RequestExecution execution;

    @Override
    public CompletableFuture execute(final RequestArguments arguments) {
        try {
            return execution.execute(arguments);
        } catch (final Exception e) {
            return exceptionallyCompletedFuture(e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy