Updated postbuild

This commit is contained in:
Relism
2025-02-27 23:38:14 +01:00
parent e9ddd43a46
commit d12f8571b7
4 changed files with 27 additions and 8 deletions
+3 -1
View File
@@ -29,7 +29,9 @@ You can extend the `RequestHandler` class to create custom handlers that process
Because `RequestHandler` is an abstract class, you need to implement both the `handle()` method and the `super` constructor in your custom handler to define the logic that should be executed
when a request is received.
Since `RequestHandler` is an abstract class, you can leverage and chain HDI's to create cleaner and more maintainable route logic (more on that in the [Handler Default Implementations](/flash/advanced/handler-default-implementations) section).
Since `RequestHandler` is an abstract class, you can leverage and chain HDI's to create cleaner and more maintainable route logic (more on that in the Handler Default Implementations guide).
```java[Example]
### 2. SimpleHandler
+1 -1
View File
@@ -13,7 +13,7 @@ corresponding file from the server. This is where a dynamic file server comes in
::: warning
The dynamic file server relies heavily on the concept of dynamic handlers, which are handlers that will resolve for
any subpath of the endpoint they are registered to (see [Handler Types](/flash/core-concepts/handlers) for more info).
any subpath of the endpoint they are registered to (see Handler Types for more info).
:::
## Usage