| Package | Description |
|---|---|
| org.lsst.ccs |
This package deals with core classes for subsystems.
|
| org.lsst.ccs.config |
Classes responsible for managing the configuration of a subsystem.
|
| org.lsst.ccs.description | |
| org.lsst.ccs.description.groovy | |
| org.lsst.ccs.framework | |
| org.lsst.ccs.startup |
Codes in this package are mostly mains for applications linked to subsystem startup.
|
| Modifier and Type | Method and Description |
|---|---|
ComponentLookup |
Agent.getComponentLookup()
Provides access to the inner modular structure of this Subsystem.
|
default ComponentLookup |
UsesSubsystem.getComponentLookup()
Returns the component lookup of the subsystem this component belongs to.
|
ComponentLookup |
Subsystem.getLookup()
Deprecated.
Use getComponentLookup instead
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
Agent.populateComponentLookup(ComponentLookup lookup)
Sets the component lookup for this Agent.
|
| Constructor and Description |
|---|
Agent(String name,
AgentInfo.AgentType agentType,
ComponentLookup componentLookup) |
Subsystem(String name,
AgentInfo.AgentType type,
ComponentLookup lookup)
Constructs Subsystem with an internal structure that has been built by
externally and stored in a ComponentLookup object.
|
| Constructor and Description |
|---|
ConfigurableSubsystem(String name,
AgentInfo.AgentType type,
ComponentLookup lookup)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentLookup |
ComponentNodeBuilder.buildComponentNode(String fullDescription)
Build a Descriptive node given a fullDescription string of the form
"protocol:descriptionStr".
|
ComponentLookup |
ComponentNodeBuilder.ComponentNodeFactory.buildComponentNode(String descriptionStr)
Build a descriptive node from the provided description String.
|
static ComponentLookup |
ComponentNodeBuilder.buildComponentNode(String fullDescription,
String alias) |
| Modifier and Type | Method and Description |
|---|---|
ComponentLookup |
GroovyComponentNodeFactory.buildComponentNode(String descriptionStr) |
| Modifier and Type | Method and Description |
|---|---|
static void |
TreeWalkerUtils.proceduralNodeWalk(ComponentLookup lookup,
String startingNodeName,
Consumer<ComponentNode> pre,
Consumer<ComponentNode> post)
Full tree walking of the component node targeted on the node itself.
|
static <A> void |
TreeWalkerUtils.proceduralWalk(ComponentLookup lookup,
String startingNodeName,
Class<A> klass,
Consumer<A> pre,
Consumer<A> post)
Full Tree walking method targeted on the node's inner object.
|
static void |
TreeWalkerUtils.treeNodeWalk(ComponentLookup lookup,
String startingNodeName,
Function<ComponentNode,TreeWalkerDiag> func,
Consumer<ComponentNode> post)
Walks the components tree recursively, applying rules of
TreeWalkerDiag (the walk can be interrupted by HANDLING_CHILDREN
(the code is not invoked on children) or STOP (the code abruptly ends) on
the node itself.
|
static <J> void |
TreeWalkerUtils.treeWalk(ComponentLookup lookup,
String startingNodeName,
Class<J> klass,
Function<J,TreeWalkerDiag> func,
Consumer<J> post)
Walks the components tree recursively, applying rules of
TreeWalkerDiag (the walk can be interrupted by HANDLING_CHILDREN
(the code is not invoked on children) or STOP (the code abruptly ends) on
the node's inner component.
|
| Constructor and Description |
|---|
NodeModularSubsystem(String subsystemName,
AgentInfo.AgentType type,
ComponentLookup lookup)
Deprecated.
|
Copyright © 2017 LSST. All rights reserved.