Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
For what purpose the above functionality used? Is it for hiding the code at composer level? If not, how can we hide code of any service and providing the leverage of only executing the service at composer level?
Please advise on both use-cases i.e. the use of allow override and process of hiding the code of any service for a thing/template/shape.
Thanks in advance.
Solved! Go to Solution.
Think of the override capability similar to defining an interface method definition. The best place to use it would be on a Thing Shape where you want to ensure there is a common service signature across your things. The underlying service code on each thing may be slightly different. For example, maybe you've got a parse service. On one thing you need to parse XML with a specific schema, and on another thing, you've also got to parse XML, but the schema is different. You could create your parse service with an XML input param, apply it to a template (depending on how you like to model), create two things based on that template, and then implement the unique parsing code directly on those two things.
My 2nd question is similar to somewhat below JIRA ticket:-
Think of the override capability similar to defining an interface method definition. The best place to use it would be on a Thing Shape where you want to ensure there is a common service signature across your things. The underlying service code on each thing may be slightly different. For example, maybe you've got a parse service. On one thing you need to parse XML with a specific schema, and on another thing, you've also got to parse XML, but the schema is different. You could create your parse service with an XML input param, apply it to a template (depending on how you like to model), create two things based on that template, and then implement the unique parsing code directly on those two things.
Hi @ranjank.
If you are satisfied with the response to your questions, please mark it as the Accepted Solution for the benefit of others with the same questions.
Thank you for your participation in our community!
Regards.
--Sharon