I’m wrapping an `actor` of one type with another, ...
# coroutines
z
I’m wrapping an
actor
of one type with another, but struggling with the
SendChannel#selectClause
. How can I implement the following?
Copy code
private val _onSend: SelectClause2<StateActorIntention<S, I>, SendChannel<StateActorIntention<S, I>>> = actor.onSend
 // how do I forward onSend to `_onSend` without using `@InternalCoroutinesApi`?
 override val onSend: SelectClause2<I, SendChannel<I>> get() = TODO("??")