uli
10/23/2017, 6:42 PMspaces.value = deferredSpaces.await()
where it will suspend.
By that time both GetSpaces()
and GetImages()
should be running in the background, in parallel.
Then, when Spaces
have been downloaded it will proceed to images.value = deferredImages.await()
.
If the Images
are already downloaded it will continue immediately, otherwise suspend until the images are also there.
Done.