I have a question regarding akka-http. I have developed a service which is spinning up different actors and besides of some other task some of the actors are also doing external http calls to different endpoints via the akka-http Http().singleRequest function. I want to isolate the Http calls via a separate dispatcher pool/configuration, but I can't find a way to define the dispatcher. For other actors I can define it via the .withDispatcher() method. Akka-http is running via akka streams as far as I know (via the actor materializer), but how can I define the dispatcher for the Http().singleRequest function?
Thanks in advance!