Package org.greenrobot.greendao.async
Interface AsyncOperationListener
-
public interface AsyncOperationListenerListener being called after completion ofAsyncOperation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAsyncOperationCompleted(AsyncOperation operation)Note, that the operation may not have been successful, checkAsyncOperation.isFailed()and/orAsyncOperation.getThrowable()for error situations.
-
-
-
Method Detail
-
onAsyncOperationCompleted
void onAsyncOperationCompleted(AsyncOperation operation)
Note, that the operation may not have been successful, checkAsyncOperation.isFailed()and/orAsyncOperation.getThrowable()for error situations.
-
-