Class ReportViewerModelDelegate
- java.lang.Object
-
- com.inductiveautomation.ignition.common.lifecycle.AbstractLifecycle
-
- com.inductiveautomation.perspective.gateway.api.ComponentModelDelegate
-
- com.inductiveautomation.reporting.gateway.perspective.ReportViewerModelDelegate
-
public class ReportViewerModelDelegate extends ComponentModelDelegate
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReportViewerModelDelegate.ReportExecutionRequest
static class
ReportViewerModelDelegate.ReportUpdatedEvent
This is the event object that will sent through the event bus to generate a "refresh" event here in the delegate.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ID
-
Fields inherited from class com.inductiveautomation.perspective.gateway.api.ComponentModelDelegate
component, log
-
-
Constructor Summary
Constructors Constructor Description ReportViewerModelDelegate(Component component)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handleEvent(EventFiredMsg message)
A event hook for the delegate.protected void
onShutdown()
protected void
onStartup()
-
Methods inherited from class com.inductiveautomation.perspective.gateway.api.ComponentModelDelegate
fireEvent, getScriptCallableMethods
-
Methods inherited from class com.inductiveautomation.ignition.common.lifecycle.AbstractLifecycle
isRunning, shutdown, startup
-
-
-
-
Field Detail
-
ID
public static final java.lang.String ID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ReportViewerModelDelegate
public ReportViewerModelDelegate(Component component)
-
-
Method Detail
-
onStartup
protected void onStartup()
- Specified by:
onStartup
in classAbstractLifecycle
-
onShutdown
protected void onShutdown()
- Specified by:
onShutdown
in classAbstractLifecycle
-
handleEvent
public void handleEvent(EventFiredMsg message)
Description copied from class:ComponentModelDelegate
A event hook for the delegate. Invoked when a "model" event is fired over the websocket channel by the component's client side model delegate. Subclasses can choose if and how to handle incoming event messages.- Overrides:
handleEvent
in classComponentModelDelegate
- Parameters:
message
-EventFiredMsg
An event fired message.
-
-