Home
last modified time | relevance | path

Searched refs:completableFuture (Results 1 – 2 of 2) sorted by relevance

/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/sync/
DSyncCompletionWaiter.java46 final CompletableFuture<Void> completableFuture = in waitForSync() local
50 waitForSync(workManager, completableFuture, uniqueWorkName, /* retryCount */ 30); in waitForSync()
63 @NonNull CompletableFuture<Void> completableFuture, in waitForSync() argument
68 completableFuture.get(/* timeout */ 3, TimeUnit.SECONDS); in waitForSync()
98 final CompletableFuture<Void> completableFuture = in waitForSyncWithTimeout() local
101 completableFuture.get(timeoutInMillis, TimeUnit.MILLISECONDS); in waitForSyncWithTimeout()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/sync/
DSyncCompletionWaiterTest.java52 final CompletableFuture<Void> completableFuture = new CompletableFuture<>(); in testWaitForSyncWhenSyncFutureIsComplete() local
53 completableFuture.complete(null); in testWaitForSyncWhenSyncFutureIsComplete()
57 .waitForSync(mMockWorkManager, completableFuture, in testWaitForSyncWhenSyncFutureIsComplete()
71 final CompletableFuture<Void> completableFuture = new CompletableFuture<>(); in testWaitForSyncWhenSyncFutureNeverCompletes() local
74 .waitForSync(mMockWorkManager, completableFuture, in testWaitForSyncWhenSyncFutureNeverCompletes()
88 final CompletableFuture<Void> completableFuture = new CompletableFuture<>(); in testWaitForSyncWhenWorkerFails() local
91 .waitForSync(mMockWorkManager, completableFuture, in testWaitForSyncWhenWorkerFails()