-
public abstract class ProfileTrackerThis class can be extended to receive notifications of profile changes. The .stopTracking method should be called in the onDestroy() method of the receiving Activity or Fragment.
-
-
Field Summary
Fields Modifier and Type Field Description private BooleanisTracking
-
Constructor Summary
Constructors Constructor Description ProfileTracker()
-
Method Summary
Modifier and Type Method Description final BooleangetIsTracking()Gets whether the tracker is tracking the current access token. final UnitsetIsTracking(Boolean isTracking)final UnitstartTracking()Starts tracking the current profile. final UnitstopTracking()Stops tracking the current profile. -
-
Method Detail
-
getIsTracking
final Boolean getIsTracking()
Gets whether the tracker is tracking the current access token.
-
setIsTracking
final Unit setIsTracking(Boolean isTracking)
-
startTracking
final Unit startTracking()
Starts tracking the current profile.
-
stopTracking
final Unit stopTracking()
Stops tracking the current profile.
-
-
-
-