
io.vertx.core.Future Maven / Gradle / Ivy
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