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

com.algolia.search.util.CompletableFutureUtils Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.util;

import java.util.concurrent.CompletableFuture;

public class CompletableFutureUtils {
  public static  CompletableFuture failedFuture(Throwable t) {
    final CompletableFuture cf = new CompletableFuture<>();
    cf.completeExceptionally(t);
    return cf;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy