Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
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.