Interface SuccessCallback<T>

  • Type Parameters:
    T - Type of the value which is returned after successfully executing an operation.
    All Known Subinterfaces:
    SuccessVoidCallback

    public interface SuccessCallback<T>
    Callback which is triggered if an operation succeeded.
    • Method Detail

      • onSuccess

        void onSuccess​(@Nullable
                       T value)
        Called after the called operation was successfully executed
        Parameters:
        value - The return value of the operation