Interface AsyncCallback<T>

  • Type Parameters:
    T - the type of value that can be passed to the callback function.

    public interface AsyncCallback<T>
    An async callback function.
    • Method Detail

      • onResult

        void onResult​(AsyncResult<? extends T> result)
        An async callback function.
        Parameters:
        result - the result of the async operation to be passed to this function.