How to override supervisory strategy of classic actor from typed one?

According to akka documentation it is possible to “spawn and supervise typed child from classic parent, and opposite”. But how can I override the standard supervisory strategy “restart” of a classic actor from its typed parent? Behaviors.supervise needs a Behavior as an argument which a classic actor does not have.

You’ll have to introduce an intermediate classic parent to override the supervision.

Ohh, I feared of that. Thanks for clarification.