| 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.classname | |
| org.lsst.ccs.description.groovy | |
| org.lsst.ccs.framework |
| Modifier and Type | Method and Description |
|---|---|
default ComponentLookup |
UsesSubsystem.getComponentLookup()
Deprecated.
Returns the component lookup of the subsystem this component belongs to.
|
ComponentLookup |
Agent.getComponentLookup()
Provides access to the inner modular structure of this Subsystem.
|
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,
String startupConfig) |
| Modifier and Type | Method and Description |
|---|---|
ComponentLookup |
ClassComponentNodeFactory.buildComponentNode(String descriptionStr) |
| Modifier and Type | Method and Description |
|---|---|
ComponentLookup |
GroovyComponentNodeFactory.buildComponentNode(String descriptionStr) |
| Modifier and Type | Method and Description |
|---|---|
static <A> void |
TreeWalkerUtils.proceduralBiWalk(ComponentLookup lookup,
String startingNodeName,
Class<A> klass,
BiConsumer<ComponentNode,A> pre,
BiConsumer<ComponentNode,A> post)
Full tree walking of the component node.
|
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 <A> void |
TreeWalkerUtils.treeBiWalk(ComponentLookup lookup,
String startingNodeName,
Class<A> klass,
BiFunction<ComponentNode,A,TreeWalkerDiag> func,
BiConsumer<ComponentNode,A> 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. |
static <A> void |
TreeWalkerUtils.treeWalk(ComponentLookup lookup,
String startingNodeName,
Class<A> klass,
Function<A,TreeWalkerDiag> func,
Consumer<A> 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. |
Copyright © 2017 LSST. All rights reserved.