/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */
package io.vertx.core;

import io.vertx.codegen.annotations.CacheReturn;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.impl.NoStackTraceThrowable;
import io.vertx.core.impl.future.PromiseImpl;

Represents the writable side of an action that may, or may not, have occurred yet.

The future() method returns the Future associated with a promise, the future can be used for getting notified of the promise completion and retrieve its value.

A promise extends Handler<AsyncResult<T>> so it can be used as a callback.

Author:Julien Viet
/** * Represents the writable side of an action that may, or may not, have occurred yet. * <p> * The {@link #future()} method returns the {@link Future} associated with a promise, the future * can be used for getting notified of the promise completion and retrieve its value. * <p> * A promise extends {@code Handler<AsyncResult<T>>} so it can be used as a callback. * * @author <a href="mailto:julien@julienviet.com">Julien Viet</a> */
@VertxGen public interface Promise<T> extends Handler<AsyncResult<T>> {
Create a promise that hasn't completed yet
Type parameters:
  • <T> – the result type
Returns: the promise
/** * Create a promise that hasn't completed yet * * @param <T> the result type * @return the promise */
static <T> Promise<T> promise() { return new PromiseImpl<>(); }
Succeed or fail this promise with the AsyncResult event.
Params:
  • asyncResult – the async result to handle
/** * Succeed or fail this promise with the {@link AsyncResult} event. * * @param asyncResult the async result to handle */
@GenIgnore @Override default void handle(AsyncResult<T> asyncResult) { if (asyncResult.succeeded()) { complete(asyncResult.result()); } else { fail(asyncResult.cause()); } }
Set the result. Any handler will be called, if there is one, and the promise will be marked as completed.

Any handler set on the associated promise will be called.
Params:
  • result – the result
Throws:
/** * Set the result. Any handler will be called, if there is one, and the promise will be marked as completed. * <p/> * Any handler set on the associated promise will be called. * * @param result the result * @throws IllegalStateException when the promise is already completed */
default void complete(T result) { if (!tryComplete(result)) { throw new IllegalStateException("Result is already complete"); } }
Calls complete(null)
Throws:
/** * Calls {@code complete(null)} * * @throws IllegalStateException when the promise is already completed */
default void complete() { if (!tryComplete()) { throw new IllegalStateException("Result is already complete"); } }
Set the failure. Any handler will be called, if there is one, and the future will be marked as completed.
Params:
  • cause – the failure cause
Throws:
/** * Set the failure. Any handler will be called, if there is one, and the future will be marked as completed. * * @param cause the failure cause * @throws IllegalStateException when the promise is already completed */
default void fail(Throwable cause) { if (!tryFail(cause)) { throw new IllegalStateException("Result is already complete"); } }
Calls fail(Throwable) with the message.
Params:
  • message – the failure message
Throws:
/** * Calls {@link #fail(Throwable)} with the {@code message}. * * @param message the failure message * @throws IllegalStateException when the promise is already completed */
default void fail(String message) { if (!tryFail(message)) { throw new IllegalStateException("Result is already complete"); } }
Like complete(Object) but returns false when the promise is already completed instead of throwing an IllegalStateException, it returns true otherwise.
Params:
  • result – the result
Returns:false when the future is already completed
/** * Like {@link #complete(Object)} but returns {@code false} when the promise is already completed instead of throwing * an {@link IllegalStateException}, it returns {@code true} otherwise. * * @param result the result * @return {@code false} when the future is already completed */
boolean tryComplete(T result);
Calls tryComplete(null).
Returns:false when the future is already completed
/** * Calls {@code tryComplete(null)}. * * @return {@code false} when the future is already completed */
default boolean tryComplete() { return tryComplete(null); }
Like fail(Throwable) but returns false when the promise is already completed instead of throwing an IllegalStateException, it returns true otherwise.
Params:
  • cause – the failure cause
Returns:false when the future is already completed
/** * Like {@link #fail(Throwable)} but returns {@code false} when the promise is already completed instead of throwing * an {@link IllegalStateException}, it returns {@code true} otherwise. * * @param cause the failure cause * @return {@code false} when the future is already completed */
boolean tryFail(Throwable cause);
Calls fail(Throwable) with the message.
Params:
  • message – the failure message
Returns:false when the future is already completed
/** * Calls {@link #fail(Throwable)} with the {@code message}. * * @param message the failure message * @return false when the future is already completed */
default boolean tryFail(String message) { return tryFail(new NoStackTraceThrowable(message)); }
Returns:the Future associated with this promise, it can be used to be aware of the promise completion
/** * @return the {@link Future} associated with this promise, it can be used to be aware of the promise completion */
@CacheReturn Future<T> future(); }