Skip to content

Instantly share code, notes, and snippets.

View niihelium's full-sized avatar
👽
Beam me up, Scotty

Nikita Unkovsky niihelium

👽
Beam me up, Scotty
View GitHub Profile
@xsaamiir
xsaamiir / actor.kt
Last active January 5, 2021 11:48
KotlinConf 2018 - Kotlin Coroutines in Practice by Roman Elizarov code Code https://youtu.be/a3agLJQ6vt8
const N_WORKERS = 5
class Content
class Location
class Reference {
fun resolveLocation(): Location = TODO()
}
data class LocContent(val location: Location, val content: Content)