Class AbstractGatewayModuleHook

java.lang.Object
com.inductiveautomation.ignition.gateway.model.AbstractGatewayModuleHook
All Implemented Interfaces:
GatewayModuleHook
Direct Known Subclasses:
GatewayHook, ReportingGatewayHook, SfcGatewayHook

public abstract class AbstractGatewayModuleHook extends Object implements GatewayModuleHook

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.