Are subscriptions to the same event processed in order? (Pooled vs queued)
We have a subscription to a data change event and a subscription to this event. Does the processing for the subscription of this event complete before the processing of the subscription for the subsequent event?
I think really the only clear way to ask this is through an example (I made up the names).
We have property `DOWNTIME`, we have a subscription to it's data change event called `REACT`.
----
`DOWNTIME` changes to 0 -> Starts `REACT` processing (PROC1) but does not finish.
`DOWNTIME` changes to 1 -> Do we start REACT processing (PROC2) right away or do we wait for PROC1 to finish?

