But now curious, whats the best approach to be able to receive some answer from the CommandHandler?
@vgaldikas You dispatch a command, the command is handled, and returns a response. If you want to return something, return it from your command’s handle method:
is that it doesn't seem to be possible to type hint the return value. Of course I can do it with annotation, but I would rather have it enforced at the language level.