GoogleMap.CancelableCallback

  • GoogleMap.CancelableCallback is an interface for reporting when a task is complete or canceled.

  • The onCancel() method is invoked when a task is canceled.

  • The onFinish() method is invoked when a task is complete.

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.