Extended callback procedure type with user data
Source position: httproute.pp line 99
type TRouteCallBackEx = procedure( |
AData: Pointer; |
ARequest: TRequest; |
AResponse: TResponse |
); |
AData |
|
User data passed to callback |
ARequest |
|
HTTP request to handle |
AResponse |
|
HTTP response to generate |
TRouteCallBackEx defines an extended callback procedure type that accepts additional user data. It provides a way to pass custom data to the callback handler.