Class HenshinReconfigurator
java.lang.Object
org.palladiosimulator.simulizar.reconfiguration.AbstractReconfigurator
org.palladiosimulator.simulizar.reconfiguration.henshin.HenshinReconfigurator
- All Implemented Interfaces:
Extension
,IReconfigurationEngine
-
Field Summary
Fields inherited from class org.palladiosimulator.simulizar.reconfiguration.AbstractReconfigurator
configuration, pcmPartitionManager
Fields inherited from interface org.palladiosimulator.simulizar.reconfiguration.IReconfigurationEngine
RECONFIGURATION_CHECK_FAILED, RECONFIGURATION_CHECK_NOT_APPLICABLE_BY_ENGINE, RECONFIGURATION_CHECK_SUCCEEDED, RECONFIGURATION_EXECUTION_FAILED, RECONFIGURATION_EXECUTION_NOT_APPLICABLE_BY_ENGINE, RECONFIGURATION_EXECUTION_SUCCEEDED
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
runCheck
(EList<? extends ModelTransformation<? extends Object>> checks, EObject monitoredElement, de.uka.ipd.sdq.scheduler.resources.active.IResourceTableManager resourceTableManager) Trigger a condition check of the model@runtime.boolean
runExecute
(EList<? extends ModelTransformation<? extends Object>> actions, EObject monitoredElement, de.uka.ipd.sdq.scheduler.resources.active.IResourceTableManager resourceTableManager) Trigger a reconfiguration of the model@runtime.void
setConfiguration
(SimuLizarWorkflowConfiguration configuration) Methods inherited from class org.palladiosimulator.simulizar.reconfiguration.AbstractReconfigurator
setPCMPartitionManager
-
Constructor Details
-
HenshinReconfigurator
public HenshinReconfigurator()Henshin reconfigurator default constructor.
-
-
Method Details
-
setConfiguration
- Specified by:
setConfiguration
in interfaceIReconfigurationEngine
- Overrides:
setConfiguration
in classAbstractReconfigurator
-
runCheck
public boolean runCheck(EList<? extends ModelTransformation<? extends Object>> checks, EObject monitoredElement, de.uka.ipd.sdq.scheduler.resources.active.IResourceTableManager resourceTableManager) Description copied from interface:IReconfigurationEngine
Trigger a condition check of the model@runtime. Engines should check whether they should reconfigure.monitoredElement
- PCM model element for which a new sensor measurement arrived.- Returns:
true
if the check was positive/matched,false
if it was negative/did not match
-
runExecute
public boolean runExecute(EList<? extends ModelTransformation<? extends Object>> actions, EObject monitoredElement, de.uka.ipd.sdq.scheduler.resources.active.IResourceTableManager resourceTableManager) Description copied from interface:IReconfigurationEngine
Trigger a reconfiguration of the model@runtime. This method should only be called if the prior check was positive, i.e., engines should only do the reconfiguration if the prior check was positive.monitoredElement
- PCM model element for which a new sensor measurement arrived.- Returns:
true
if the reconfiguration was executed,false
if it was not executed or did not succeed.
-