<Concurrency in kotlin also block after synchroniz...
# stackoverflow
u
Concurrency in kotlin also block after synchronized block I have a block of code like this in kotlin. synchronized(this) { // do some work and produces a String }.also { /*it: String*/ logger.log(it) } can some thread come and with unlucky timing the it variable gets changed before logging happens? (There are a lot of threads executing this piece of code concurrently)