public static interface

FirebaseAuth.IdTokenListener

com.google.firebase.auth.FirebaseAuth.IdTokenListener

Class Overview

Listener called when the id token is changed.

Use addIdTokenListener(IdTokenListener) and removeIdTokenListener(IdTokenListener) to register or unregister listeners.

Summary

Public Methods
abstract void onIdTokenChanged(FirebaseAuth auth)
This method gets invoked in the UI thread on changes in the authentication state:
  • Right after the listener has been registered
  • When a user is signed in
  • When the current user is signed out
  • When the current user changes
  • When there is a change in the current user's token

Public Methods

public abstract void onIdTokenChanged (FirebaseAuth auth)

This method gets invoked in the UI thread on changes in the authentication state:

  • Right after the listener has been registered
  • When a user is signed in
  • When the current user is signed out
  • When the current user changes
  • When there is a change in the current user's token

Parameters
auth FirebaseAuth: use it to disambiguate which FirebaseAuth instance the event corresponds to, in the case where you are using more than one at the same time.