Package com.microblink.blinkid.hardware
Interface SuccessCallback
public interface SuccessCallback
Callback that will be invoked when some asynchronous operation has finished.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onOperationDone
(boolean success) Invoked when asynchronous operation has finished.
-
Method Details
-
onOperationDone
@AnyThread void onOperationDone(boolean success) Invoked when asynchronous operation has finished. Note that invocation can happen on either background or UI thread.- Parameters:
success
- Whether or not operation has succeeded.
-