I have a timer that needs to not process its elapsed event handler at the same time. But processing one Elapsed event may interfere with others. I implemented the bel
timer.enabled = false
or
timer.stop();
and
timer.enabled = true
timer.start();