The community will undergo maintenance on October 16th at 10:00 PM PDT and will be unavailable for up to one hour.
Hello,
I have a thingShape with a service that works.
I want to execute It on every thing which has this service by using a button from my mashup.
What is the simplest way of doing so?
Solved! Go to Solution.
ThingShapes[NameOfThingShape].GetImplementingThings
for each item
Things[row.name].ServiceToInvoke({Parameters});
Something like that
Just be aware about what type of impact this could have on your system, for example if this is thousands of Things all running your service.
ThingShapes[NameOfThingShape].GetImplementingThings
for each item
Things[row.name].ServiceToInvoke({Parameters});
Something like that
Just be aware about what type of impact this could have on your system, for example if this is thousands of Things all running your service.