Interface RunnableWithResult<T>
public interface RunnableWithResult<T>
A Runnable like interface that can return a result possibly asynchronously
-
Method Summary
Modifier and TypeMethodDescriptionvoidrun(SuccessCallback<T> onSuccess) Similar to the runnable interface but can return a result
-
Method Details
-
run
Similar to the runnable interface but can return a result
Parameters
onSuccess: the result of the call
-