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 Summary

    Modifier and Type
    Method
    Description
    void
    onSuccess(T value)
    Called after the called operation was successfully executed
  • Method Details

    • onSuccess

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