Interface RunnableWithResult<T>


public interface RunnableWithResult<T>
A Runnable like interface that can return a result possibly asynchronously
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run(SuccessCallback<T> onSuccess)
    Similar to the runnable interface but can return a result
  • Method Details

    • run

      void run(SuccessCallback<T> onSuccess)

      Similar to the runnable interface but can return a result

      Parameters
      • onSuccess: the result of the call