File eventLoopTerminal.h
File List > features > eventLoopTerminal.h
Go to the documentation of this file
#pragma once
namespace jac {
template<class Next>
class EventLoopTerminal : public Next {
public:
virtual void runOnEventLoop() override { // NOLINT
Next::onEventLoop();
};
};
} // namespace jac