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

io.vertx.core.Future Maven / Gradle / Ivy

There is a newer version: 3.6.3
Show newest version
package io.vertx.core;

/**
 * @author Julien Viet
 */
public interface Future extends AsyncResult {

  static  Future succeededFuture(T result) {
    throw new UnsupportedOperationException();
  }

  static  Future failedFuture(Throwable t) {
    throw new UnsupportedOperationException();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy