Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created November 22, 2018 22:22
Show Gist options
  • Save sajjadyousefnia/7434429151a93ac521e08b3f6831a564 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/7434429151a93ac521e08b3f6831a564 to your computer and use it in GitHub Desktop.
inline fun <T> synchronized(lock: Lock, action: () -> T): T {
lock.lock()
try {
return action()
}
finally {
lock.unlock()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment