Class SystemExecutionEnvironment
java.lang.Object
de.aristaflow.adept2.core.runtimemanager.executionenvironments.ExecutionEnvironment
de.aristaflow.adept2.core.runtimemanager.executionenvironments.SystemExecutionEnvironment
- All Implemented Interfaces:
ExecutableComponent
This abstract system execution environment extends the abstract execution
environment by a registry for accessing the system directly.
Note, that only special, signed environments are allowed to extend this class. Please ask AristaFlow for advise, in case you need to implement a system execution environment.
- Author:
- Ulrich Kreher
-
Nested Class Summary
Nested classes/interfaces inherited from interface de.aristaflow.adept2.model.runtimeenvironment.ExecutableComponent
ExecutableComponent.Signals -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final RegistryThe registry for thisSystemExecutionEnvironment.Fields inherited from class de.aristaflow.adept2.core.runtimemanager.executionenvironments.ExecutionEnvironment
actData, activityInstance, cleanup, localisedActInst, logger, sessionContext, SUSPEND_SAVEPOINTFields inherited from interface de.aristaflow.adept2.model.runtimeenvironment.ExecutableComponent
CONF_DATA_DIRECTORY, CONF_LIB_DIRECTORY, CONF_LOG_DIRECTORY, UNLOADING_CLASS_METHOD -
Constructor Summary
ConstructorsConstructorDescriptionSystemExecutionEnvironment(ActivityInstance activityInstance, Registry registry) Creates a newSystemExecutionEnvironmentfor the designated activity. -
Method Summary
Methods inherited from class de.aristaflow.adept2.core.runtimemanager.executionenvironments.ExecutionEnvironment
cleanup, close, commit, createActivityData, getApplicationState, getApplicationState, getRawApplicationState, getRawApplicationState, init, initResume, kill, prepareCommit, requireGUIContext, reset, rollback, run, setApplicationState, setApplicationState, setRawApplicationState, setRawApplicationState, signal, suspend
-
Field Details
-
registry
The registry for thisSystemExecutionEnvironment.
-
-
Constructor Details
-
SystemExecutionEnvironment
Creates a newSystemExecutionEnvironmentfor the designated activity. The constructor just sets the registry and calls the super-constructor.- Parameters:
activityInstance- The activity instance for thisExecutionEnvironment.registry- The registry for thisSystemExecutionEnvironment.
-