``` inline fun Actor.receiveForever(proc: (Any) -&...
# announcements
j
Copy code
inline fun Actor.receiveForever(proc: (Any) -> Any?) {
    while (true) {
        this.receive(-1, null, proc)
    }
}