onActivateComplete abstract method

void onActivateComplete(
  1. bool isCache
)

Informs the app when an activation is done.

This notification is important in the 'greedy' case of activation. An object may greedily call for activation and other objects may need to know to modify their state (or ignore this activation) in order to maintain a consistent user experience. isCache is true if activated from the cached data. For iOS, isCache is always false.

Implementation

void onActivateComplete(bool isCache);