alexreidy
07/30/2017, 4:38 PMifActorThreadIsAvailable(action: (complete: () -> Unit) -> Unit)
And this works as expected. But when I call it through a non-inline function in the same class (no issues calling through another inline) it explodes: NoClassDefFoundError: mypkg/AbstractActor$ifActorThreadIsAvailable$1
.
The non-inline function contains a call like this ifActorThreadIsAvailable { complete -> ...
Does the $1
mean it's failing to find an internal anonymous lambda class or something? Thanks