MCPcopy Create free account
hub / github.com/NativeScript/firebase / addToResumeQueue

Method addToResumeQueue

packages/firebase-core/index.android.ts:179–184  ·  view source on GitHub ↗
(callback: () => void)

Source from the content-addressed store, hash-verified

177export class Firebase {
178 static _onResumeQueue = [];
179 static addToResumeQueue(callback: () => void) {
180 if (typeof callback !== 'function') {
181 return;
182 }
183 Firebase._onResumeQueue.push(callback);
184 }
185 static _activityResultContractsQueue = fromObject({});
186
187 static registerActivityResultContracts(callback: (args: AndroidActivityEventData & { dispose: boolean }) => void) {

Callers

nothing calls this directly

Calls 1

pushMethod · 0.65

Tested by

no test coverage detected