I've tried with ``` fun foo() { synchronized(t...
# announcements
f
I've tried with
Copy code
fun foo() {
    synchronized(this) { //this being the singleton (object)
       //code
    }
}
Is this different? this approach did not work