Niko Will
Niko Will
Hey guys, as workaround to avoid the instanceof hell one can use something like this: ``` final PartialFunction domainExceptionHandler = new PFBuilder() .match(MyCustomException.class, ex -> complete(StatusCodes.NOT_FOUND, ex.getMessage())) ... .build(); final...
Hi Fabrice, Thanks for your answer. Your summary is correct. Moving the Shutdown handling to the unhandled could actually work. To be honest, we only had one Consumer/ChannelOwner in this...
Hi Fabrice, If it would be guaranteed, that the actor was suspended before the next forwarder is created, a unique name is preferrable to (as you said) detect weird problems...