Class AbstractGatewayModuleHook
java.lang.Object
com.inductiveautomation.ignition.gateway.model.AbstractGatewayModuleHook
- All Implemented Interfaces:
GatewayModuleHook
- Direct Known Subclasses:
EventStreamGatewayHook
,GatewayHook
,HistorianGatewayHook
,ReportingGatewayHook
,SfcGatewayHook
Base class for all gateway module hook implementations. All methods are given empty implementations. It is expected that subclasses will override any methods that they wish to give real implementations.
Best practice is to subclass this class rather than implement GatewayModuleHook
directly, so that when new
methods get added to the interface, your module automatically inherits an empty implementation of the new method
rather than breaking with a NoSuchMethodError
.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
configureDeserializer
(XMLDeserializer deserializer) Provides the module a chance to configure the deserializer with any custom handlersvoid
Provides the module with an opportunity to define its own expression functionsvoid
configureSerializer
(XMLSerializer serializer) Provides the module a chance to add serialization delegates to the serializer custom for classes that might be encountered when serializing objects provided by this moduleReturns the RPC implementation for this module, if any.void
initializeScriptManager
(ScriptManager manager) Initialize a newly-instantiated script manager.void
notifyLicenseStateChanged
(LicenseState licenseState) Notify module hook when the license state has changed.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.inductiveautomation.ignition.gateway.model.GatewayModuleHook
getExtensionPoints, getMountedResourceFolder, getMountPathAlias, getRecordMigrationStrategies, isFreeModule, isMakerEditionCompatible, mountRouteHandlers, onMountedResourceRequest, setup, shutdown, startup
-
Constructor Details
-
AbstractGatewayModuleHook
public AbstractGatewayModuleHook()
-
-
Method Details
-
getRpcImplementation
Description copied from interface:GatewayModuleHook
Returns the RPC implementation for this module, if any. This is the recommended way to expose RPC functions to the Designer or Vision Client if required. The return value will be cached for the lifetime of the Gateway.- Specified by:
getRpcImplementation
in interfaceGatewayModuleHook
- See Also:
-
configureDeserializer
Description copied from interface:GatewayModuleHook
Provides the module a chance to configure the deserializer with any custom handlers- Specified by:
configureDeserializer
in interfaceGatewayModuleHook
-
configureSerializer
Description copied from interface:GatewayModuleHook
Provides the module a chance to add serialization delegates to the serializer custom for classes that might be encountered when serializing objects provided by this module- Specified by:
configureSerializer
in interfaceGatewayModuleHook
-
configureFunctionFactory
Description copied from interface:GatewayModuleHook
Provides the module with an opportunity to define its own expression functions- Specified by:
configureFunctionFactory
in interfaceGatewayModuleHook
-
notifyLicenseStateChanged
Description copied from interface:GatewayModuleHook
Notify module hook when the license state has changed. This could only contain changes for the module or it could contain a change to the platform license (version, restrictions such as expiration date, sqltag count...)- Specified by:
notifyLicenseStateChanged
in interfaceGatewayModuleHook
-
initializeScriptManager
Description copied from interface:GatewayModuleHook
Initialize a newly-instantiated script manager. This will be called exactly once for any givenScriptManager
instance. Usually this will involve callingScriptManager.addScriptModule(String, Object)
, which reflectively loads the public (instance and static) java functions from the given object into the scripting environment, at the provided path.This function may be called before
GatewayModuleHook.startup(LicenseState)
, but never beforeGatewayModuleHook.setup(GatewayContext)
.- Specified by:
initializeScriptManager
in interfaceGatewayModuleHook
-