Searched refs:DatabaseLauncher (Results 1 – 6 of 6) sorted by relevance
| /expo/packages/expo-updates/android/src/androidTest/java/expo/modules/updates/launcher/ |
| H A D | DatabaseLauncherTest.kt | 47 val launcher = DatabaseLauncher( in testGetUpdateIds_EmptyDB() 68 val launcher = DatabaseLauncher( in testGetUpdateIds_DBWithOneUpdate() 94 val launcher = DatabaseLauncher( in testGetUpdateIds_DBWithOneReadyUpdate() 120 val launcher = DatabaseLauncher( in testLaunch_MarkUpdateAccessed()
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/ |
| H A D | UpdatesDevLauncherController.kt | 6 import expo.modules.updates.launcher.DatabaseLauncher 136 val launcher = DatabaseLauncher( in launchUpdate() 183 val launcher = DatabaseLauncher( in storedUpdateIdsWithConfiguration()
|
| H A D | UpdatesController.kt | 24 import expo.modules.updates.launcher.DatabaseLauncher 513 val newLauncher = DatabaseLauncher( in relaunchReactApplication()
|
| /expo/packages/expo-updates/guides/ |
| H A D | examples.md | 16 6. Before anything else happens, `LoaderTask` then starts an instance of `DatabaseLauncher`, which … 19 …- If the timer has not yet run out, `LoaderTask` will create a new "candidate" `DatabaseLauncher` … 38 2. `LoaderTask` creates an instance of `DatabaseLauncher`. It selects update C and prepares it to l… 51 2. `LoaderTask` creates an instance of `DatabaseLauncher`. It selects update Z and prepares it to l… 68 A more detailed walkthrough of what happens in the `DatabaseLauncher`/`EXUpdatesAppLauncherWithData… 70 1. Once an update has been selected to launch, `DatabaseLauncher` asserts that the launch asset is … 71 2. `DatabaseLauncher` then iterates through each asset that comprises the update (including the lau… 72 3. If there is not, `DatabaseLauncher` attempts to find the asset. First, it reads the embedded man… 73 4. If not, or if the copy fails, `DatabaseLauncher` will try to download the asset (assuming there … 74 5. If all else fails, `DatabaseLauncher` will fire its failure callback if the launch asset is miss…
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/launcher/ |
| H A D | DatabaseLauncher.kt | 39 class DatabaseLauncher( class 241 private val TAG = DatabaseLauncher::class.java.simpleName
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/ |
| H A D | LoaderTask.kt | 14 import expo.modules.updates.launcher.DatabaseLauncher in <lambda>() 285 val launcher = DatabaseLauncher(configuration, directory, fileDownloader, selectionPolicy) in <lambda>() 422 … val newLauncher = DatabaseLauncher(configuration, directory, fileDownloader, selectionPolicy) in <lambda>()
|