mark dispatching as const

This commit is contained in:
Kevin Matz 2023-04-24 16:43:35 -04:00
parent d7722f24f3
commit 0bfab08041

View File

@ -38,10 +38,10 @@ public:
explicit Server(); explicit Server();
virtual ~Server(); virtual ~Server();
void dispatch(const std::shared_ptr<Message>); void dispatch(const std::shared_ptr<Message>) const;
protected: protected:
void scheduleBundle(const std::shared_ptr<Bundle>); void scheduleBundle(const std::shared_ptr<Bundle>) const;
/** /**
* @brief rootMethod * @brief rootMethod