We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a type default_request_handler_t:
default_request_handler_t
restinio/dev/restinio/request_handler.hpp
Lines 478 to 479 in 4d003e9
generic_request_handle_t
Lines 454 to 456 in 4d003e9
But there is no generic_request_handler_t in a form like:
generic_request_handler_t
template<typename ExtraData> using generic_request_handler_t = std::function< request_handling_status_t(generic_reqeuest_handle_t<ExtraData>)>;
Such a type can make usage of ExtraData simpler.
The text was updated successfully, but these errors were encountered:
eao197
No branches or pull requests
There is a type
default_request_handler_t
:restinio/dev/restinio/request_handler.hpp
Lines 478 to 479 in 4d003e9
And there is a type
generic_request_handle_t
:restinio/dev/restinio/request_handler.hpp
Lines 454 to 456 in 4d003e9
But there is no
generic_request_handler_t
in a form like:Such a type can make usage of ExtraData simpler.
The text was updated successfully, but these errors were encountered: