Thanks for responding.

> How easy would it be to directly remove specific types of events from a
> state machine's event queue?

You can't currently do that directly. If you want to ignore events of
certain types in an FSM then you usually do that by simply not specifying
any reactions triggered by them.

I  think that with proper specification of events I should be able to take this into account,
and solve my problem.  Thanks again.