Other than that, you could have (I guess): ``` inl...
# announcements
a
Other than that, you could have (I guess):
Copy code
inline fun <reified R> doAwayWithIt() = object : Replyable<R> { override val deferred = CompletableDeferred<R>() }
And then do
data class Get(val thing: UUID) : ActorMessage(), Replyable<String> by doAwayWithIt()