Interface OnSuccessListener<TResult>
-
public interface OnSuccessListener<TResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onSuccess(TResult result)
Called once succeed and pass the result object.
-
-
-
Method Detail
-
onSuccess
void onSuccess(@NonNull TResult result)
Called once succeed and pass the result object.- Parameters:
result
- the success result.
-
-