Package com.mparticle.identity
Interface IdentityStateListener
-
public interface IdentityStateListener
The IdentityStateListener is a callback which will be invoked when either a new user is identified, or the current user's "logged in" status changes. The "user" received in the onUserIdentified() implementation is the new current user and should be equal, although not referentially. The "previousUser" parameter refers to the the MParticleUser instance which was previously the current user, if there was one.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onUserIdentified(MParticleUser user, MParticleUser previousUser)
-
-
-
Method Detail
-
onUserIdentified
void onUserIdentified(@NonNull MParticleUser user, @Nullable MParticleUser previousUser)
-
-