Dispatcher |
Dispatcher converts Requests into controller actions. It uses the dispatched Request
to locate and load the correct controller. If found, the requested action is called on
the controller |
DispatcherFactory |
A factory for creating dispatchers with all the desired middleware
connected. |
DispatcherFilter |
This abstract class represents a filter to be applied to a dispatcher cycle. It acts as an
event listener with the ability to alter the request or response as needed before it is handled
by a controller or after the response body has already been built. |
RouteBuilder |
Provides features for building routes inside scopes. |
RouteCollection |
Contains a collection of routes. |
Router |
Parses the request URL into controller, action, and parameters. Uses the connected routes
to match the incoming URL string to parameters that will allow the request to be dispatched. Also
handles converting parameter lists into URL strings, using the connected routes. Routing allows you to decouple
the way the world interacts with your application (URLs) and the implementation (controllers and actions). |