Dispatchers can be defined as callable or class name. If a dispatcher definition is not a
callable it is used as class name to instantiate a dispatcher.
Dispatches a request using the defined dispatchers.
Dispatches a request using the defined dispatchers.
The method iterates over the defined dispatchers until one of them returns a
ICanBoogie\HTTP\Response instance. If an exception is throw during the dispatcher execution and
the dispatcher implements the ICanBoogie\HTTP\DispatcherInterface interface then its
DispatcherInterface::rescue method is invoked to rescue the exception, otherwise the
exception is just re-thrown.
ICanBoogie\HTTP\Dispatcher\DispatchEvent is fired before the response is returned. The event is
fired event if the dispatchers did'nt return a response. It's the last chance to get one.
ICanBoogie\Exception\RescueEvent is fired with the exception as target.
The response provided by one of the event hooks is returned. If there is no response the
exception is thrown again.
If a response is finally obtained, the X-ICanBoogie-Rescued-Exception header is added to
indicate where the exception was thrown from.