Add API rebind polling

This commit is contained in:
Tony Butler 2021-12-22 05:17:08 -07:00
parent 02d45834e1
commit 548fbb9f71
4 changed files with 20 additions and 0 deletions

View file

@ -54,6 +54,7 @@ public:
void request(const HttpData &req);
void start();
void stop();
void tick();
protected:
void onConfigChanged(Config *config, Config *previousConfig) override;
@ -67,6 +68,7 @@ private:
char m_id[32]{};
String m_workerId;
const uint64_t m_timestamp;
uint8_t m_ticks;
Httpd *m_httpd = nullptr;
std::vector<IApiListener *> m_listeners;
};