Package com.inductiveautomation.sfc.api
Interface ChartManagerService
- All Superinterfaces:
ModuleService
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addChartObserver
(ChartObserver observer) Registers a ChartObserver that will be notified of chart and element events that occur.void
cancelChart
(UUID instanceId) Cancel the chart instance identified byinstanceId
.void
pauseChart
(UUID instanceId) Pause the chart instance identified byinstanceId
.void
register
(StepFactory factory) Register aStepFactory
.void
registerScopeLocator
(ScopeLocator locator) Register aScopeLocator
, which will be used by expressions and scripting functions to resolve special scopes provided or identified by modules.void
removeChartObserver
(ChartObserver observer) Removes a previously registered ChartObserver.void
resumeChart
(UUID instanceId) Resume the chart instance identified byinstanceId
.Start an instance of the chart defined atchartPath
.void
unregister
(StepFactory factory) Unregister aStepFactory
.void
unregisterScopeLocator
(ScopeLocator locator) Unregister a previously registered scope locator.
-
Method Details
-
register
Register aStepFactory
.- Parameters:
factory
- TheStepFactory
to register.
-
unregister
Unregister aStepFactory
.- Parameters:
factory
- TheStepFactory
to unregister.
-
registerScopeLocator
Register aScopeLocator
, which will be used by expressions and scripting functions to resolve special scopes provided or identified by modules. -
unregisterScopeLocator
Unregister a previously registered scope locator. -
startChart
UUID startChart(String projectName, String chartPath, Map<String, Object> parameters, String user) throws ExceptionStart an instance of the chart defined atchartPath
.- Parameters:
projectName
- the name of the Project the chart is defined in.chartPath
- the path to the chart in ProjectprojectName
.parameters
- the parameters to be made available start in the chart's scope.user
- the user requesting the chart be started.- Returns:
- the UUID of the chart instance.
- Throws:
Exception
- if the chart cannot be started for any reason.
-
cancelChart
Cancel the chart instance identified byinstanceId
.- Parameters:
instanceId
- the instance id of the chart to cancel.
-
pauseChart
Pause the chart instance identified byinstanceId
.- Parameters:
instanceId
- the instance id of the chart to pause.
-
resumeChart
Resume the chart instance identified byinstanceId
.- Parameters:
instanceId
- the instance id of the chart to resume.
-
addChartObserver
Registers a ChartObserver that will be notified of chart and element events that occur. -
removeChartObserver
Removes a previously registered ChartObserver.
-