AI-generated Key Takeaways
-
GoogleMap.CancelableCallbackis an interface used for receiving updates on the status of a task. -
It provides two methods:
onCancel()called when a task is canceled andonFinish()called when a task is successfully completed.
public static interface
GoogleMap.CancelableCallback
A callback interface for reporting when a task is complete or canceled.
Public Method Summary
| abstract void |
onCancel()
Invoked when a task is canceled.
|
| abstract void |
onFinish()
Invoked when a task is complete.
|
Public Methods
public abstract void onCancel ()
Invoked when a task is canceled.
public abstract void onFinish ()
Invoked when a task is complete.