Interface SuccessCallback


public interface SuccessCallback
Callback that will be invoked when some asynchronous operation has finished.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onOperationDone(boolean success)
    Invoked when asynchronous operation has finished.
  • Method Details

    • onOperationDone

      @AnyThread void onOperationDone(boolean success)
      Invoked when asynchronous operation has finished. Note that invocation can happen on either background or UI thread.
      Parameters:
      success - Whether or not operation has succeeded.