Package com.xffffff.wellfed.common
Interface OnCompleteListener<T>
-
public interface OnCompleteListener<T>This interface is used to handle the result of DB operation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonComplete(T item, java.lang.Boolean success)Called when a DB operation is completed
-
-
-
Method Detail
-
onComplete
void onComplete(T item, java.lang.Boolean success)
Called when a DB operation is completed- Parameters:
item- the objectsuccess- true if the operation was successful, false otherwise.
-
-