#include <Dispatcher.h>
Definition at line 38 of file Dispatcher.h.
◆ Dispatcher() [1/2]
express::Dispatcher::Dispatcher |
( |
const Dispatcher & | | ) |
|
|
delete |
◆ Dispatcher() [2/2]
express::Dispatcher::Dispatcher |
( |
| ) |
|
|
default |
◆ ~Dispatcher()
express::Dispatcher::~Dispatcher |
( |
| ) |
|
|
virtual |
◆ dispatch()
virtual bool express::Dispatcher::dispatch |
( |
Controller & | controller, |
|
|
const std::string & | parentMountPath, |
|
|
const MountPoint & | mountPoint ) |
|
pure virtual |
◆ dispatchNext()
bool express::Dispatcher::dispatchNext |
( |
Controller & | controller, |
|
|
const std::string & | parentMountPath ) |
Definition at line 33 of file Dispatcher.cpp.
33 {
34 bool dispatched = false;
35
37 dispatched =
nextRoute->dispatch(controller, parentMountPath);
38 }
39
40 return dispatched;
41 }
std::shared_ptr< Route > nextRoute
◆ operator=()
◆ Route
◆ nextRoute
std::shared_ptr<Route> express::Dispatcher::nextRoute = nullptr |
|
private |
The documentation for this class was generated from the following files: