| Package | com.myflashlab.air.extensions.firebase.core |
| Class | public class FirebaseEvents |
| Inheritance | FirebaseEvents flash.events.Event |
| Property | Defined By | ||
|---|---|---|---|
| iidID : String [read-only] | FirebaseEvents | ||
| iidToken : String [read-only] | FirebaseEvents | ||
| msg : String [read-only] | FirebaseEvents | ||
| Constant | Defined 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 | ||
| iidID | property |
iidID:String [read-only] public function get iidID():String| iidToken | property |
iidToken:String [read-only] public function get iidToken():String| msg | property |
msg:String [read-only] public function get msg():String| IID_ID | Constant |
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_TOKEN | Constant |
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.