Packagecom.myflashlab.air.extensions.firebase.core
Classpublic class FirebaseEvents
InheritanceFirebaseEvents Inheritance flash.events.Event



Public Properties
 PropertyDefined By
  iidID : String
[read-only]
FirebaseEvents
  iidToken : String
[read-only]
FirebaseEvents
  msg : String
[read-only]
FirebaseEvents
Public Constants
 ConstantDefined By
  IID_ID : String = onIidId
[static] Called after you call Firebase.iid.getID() and returns the id of your Firebase instance id.
FirebaseEvents
  IID_TOKEN : String = onIidToken
[static] Will be dispatched after a call to Firebase.iid.getToken($authorizedEntity, $scope) and notifies you about the token.
FirebaseEvents
Property Detail
iidIDproperty
iidID:String  [read-only]


Implementation
    public function get iidID():String
iidTokenproperty 
iidToken:String  [read-only]


Implementation
    public function get iidToken():String
msgproperty 
msg:String  [read-only]


Implementation
    public function get msg():String
Constant Detail
IID_IDConstant
public static const IID_ID:String = onIidId

Called after you call Firebase.iid.getID() and returns the id of your Firebase instance id. If it's already available, the old id will be returned and if not, a new ID will be generated.

You should listen to Firebase.iid.addEventListener(FirebaseEvents.IID_ID) to hear this event.

IID_TOKENConstant 
public static const IID_TOKEN:String = onIidToken

Will be dispatched after a call to Firebase.iid.getToken($authorizedEntity, $scope) and notifies you about the token.

You should listen to Firebase.iid.addEventListener(FirebaseEvents.IID_TOKEN) to hear this event.