Package com.thingworx.things.handlers
Interface IThingInitializeHandler
-
@ThingworxExtensionApiClass(since={7,4}) public interface IThingInitializeHandler
An interface to allow ThingShape POJOs to participate in the lifecycle of Things
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleInitializeThing(Thing thing)
void
handleInitializeThing(Thing thing, ContextType contextType)
-
-
-
Method Detail
-
handleInitializeThing
@ThingworxExtensionApiMethod(since={7,4}) void handleInitializeThing(Thing thing) throws java.lang.Exception
- Throws:
java.lang.Exception
- If an error occurs
-
handleInitializeThing
@ThingworxExtensionApiMethod(since={9,0}) void handleInitializeThing(Thing thing, ContextType contextType) throws java.lang.Exception
- Throws:
java.lang.Exception
- If an error occurs
-
-