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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy