I use a VoltageInput Phidget to read from a flow sensor, and update a running-integration of total flow upon each new VoltageChange event. This is accomplished with the awesome VoltageChange Event system.
My question: does a long-running handler block other Events from coming in?
In the Special Considerations section of https://www.phidgets.com/docs/Using_Events, it hints the Events are blocking, but I wanted to confirm as it's never explicitly stated.
Can you confirm an individual Phidget won't send a new Event until the prior handler completes?
For the record, I think a blocking handler is a good thing, because otherwise I would have to make my handler being thread-safe.