You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: dispatcher/index.md
+67-6
Original file line number
Diff line number
Diff line change
@@ -35,13 +35,15 @@ Fano Framework will pass instance of CGI environment and `IStdIn` instance based
35
35
36
36
## Built-in Dispatcher implementation
37
37
38
-
Fano Framework comes with two dispatcher implementation, `TSimpleDispatcher` and
39
-
`TDispatcher` class.
38
+
Fano Framework comes with several dispatcher implementations.
40
39
41
-
`TSimpleDispatcher` is light-weight dispatcher that does not offer middleware layer
42
-
while the latter supports middleware.
43
-
44
-
`TVerbTunnellingDispatcher` is decorator dispatcher that allows web application to serve request through [HTTP verb tunnelling](/security/http-verb-tunnelling).
40
+
-`TSimpleDispatcher` is light-weight dispatcher that does not offer middleware layer.
41
+
-`TXSimpleDispatcher` is similar to `TSimpleDispatcher` with capability to decorate request, response and CGI environment. This is provided, for example, to [allow HTTP override]((/security/http-verb-tunnelling))`_method` parameter.
42
+
-`TDispatcher` is dispatcher that supports middleware.
43
+
-`TXDispatcher` is similar to `TDispatcher` with capability like `TXSimpleDispatcher`.
44
+
-`TMwExecDispatcher` is similar to `TXDispatcher` except it makes sure global middlewares are always executed although route does not exist or method verb is not allowed.
45
+
-`TMaintenanceModeDispatcher` is decorater dispatcher that makes application enters maintenance mode when a special file exists.
46
+
-`TVerbTunnellingDispatcher` is decorator dispatcher that allows web application to serve request through [HTTP verb tunnelling](/security/http-verb-tunnelling).
45
47
46
48
## Creating dispatcher
47
49
If you use [Fano CLI](https://github.com/fanoframework/fano-cli) to [scaffold your web application project](/scaffolding-with-fano-cli), you can skip this as Fano CLI creates dispatcher instance for you.
@@ -106,6 +108,65 @@ container.add(
106
108
)
107
109
);
108
110
```
111
+
112
+
### Maintenance mode
113
+
114
+
To allow application to enter maintenance mode, use `TMaintenanceModeDispatcher`.
0 commit comments