Boost state machine deferred event

563 Views Asked by At
struct transition_table : mpl::vector<
  Row < waiting, update, pending, send_replace, none>,
  Row < pending, update, none, Defer, none>,
  Row < pending, replaced, waiting, ack_replace, none>
  > { }; 

If second transition is Defer twice in a row, is it possible to discard the first one?

0

There are 0 best solutions below