WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
BaseStatefulExecutor.h
1#pragma once
2
3#include "BaseExecutor.h"
4
5namespace framework
6{
12 class WEB_FRAMEWORK_API BaseStatefulExecutor : public BaseExecutor
13 {
14 public:
15 BaseStatefulExecutor() = default;
16
21 virtual executorType getType() const final override;
22
27 virtual void destroy() override;
28
29 virtual ~BaseStatefulExecutor() = default;
30 };
31}
Base class for all executors.
Base class for executors with dynamically changes states.