| Package | Description |
|---|---|
| org.lsst.ccs.framework |
| Modifier and Type | Method and Description |
|---|---|
default TreeWalkerDiag |
SignalHandler.signal(Signal sig)
this method is intended for overriding: the module receives an out of
band signal.
|
static TreeWalkerDiag |
TreeWalkerDiag.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeWalkerDiag[] |
TreeWalkerDiag.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static <A> void |
TreeWalkerUtils.treeBiWalk(ComponentLookup lookup,
ComponentNode startingNode,
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,
ComponentNode startingNode,
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 © 2021 LSST. All rights reserved.