https://kotlinlang.org logo
#coroutines
Title
# coroutines
d

Dalinar

08/31/2017, 1:47 AM
is supporting suspending getters something on the horizon? also, is there any workaround or we must completely avoid properties if we want the to do some suspendable calculations (for the "property")?
d

dragas

08/31/2017, 7:11 AM
I'd go for
Atomic
data structures, if your data is primitive. Otherwise try using
@Synchronized
.
4 Views