Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi,
I want to know if the ThingWorx server handle the events of virtual thing sequentially , and if yes, are the events handled sequentially by remote thing ?
For example:
---------------------------------------------------------------------
Virtual Thing VA <- connected to -> Remote Thing RA
Virtual Thing VB <- connected to -> Remote Thing RB
Time | Statement | Virtual Thing |
t1 | queueEvent("DeviceDataScanned", t1, deviceData1) updateSubscribedEvents() |
VA |
t2 | queueEvent("DeviceDataScanned", t2, deviceData2) updateSubscribedEvents() |
VB |
t3 | queueEvent("DeviceDataScanned", t3, deviceData3) updateSubscribedEvents() |
VA |
t4 | queueEvent("DeviceDataScanned", t4, deviceData4) updateSubscribedEvents() |
VB |
Then what's the receiving sequence of Remote Thing's subscription ? would it be the following ?
Remote Thing RA:
Remote Thing RB:
---------------------------------------------------------------------------------
Same question for the Protocol Adapter Toolkit (PAT )via ProtocolAdapterServices.getPlatformService().fireEvent(fireEventMessage) .
Regards,
Sean