boost::msm::backmp11::state_machine::enqueue_event
Puts the event into the event pool to process it in the same processing cycle.
Synopsis
Declared in <boost/msm/backmp11/state_machine.hpp>
template<
class Event,
bool C = state_machine_base::has_event_pool>
requires C
void
enqueue_event(Event const& event);
Description
The event will be processed after the current event completes. Behaves identically to defer_event if called while no event processing takes place.
Created with MrDocs