Package com.evolveum.axiom.reactor
Interface DependantAction<E extends Exception>
- All Superinterfaces:
Action<E>
,Dependency<Void>
- All Known Implementing Classes:
ValueActionImpl
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.evolveum.axiom.reactor.Dependency
Dependency.Immediate<V>, Dependency.OptionalDep<T>, Dependency.Search<T>, Dependency.Suppliable<V>, Dependency.Unsatified<V>
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
canApply()
Returns true if action can be applied.Collection<Dependency<?>>
Methods inherited from interface com.evolveum.axiom.reactor.Action
apply, error, fail, get, isSatisfied, successful
Methods inherited from interface com.evolveum.axiom.reactor.Dependency
errorMessage, flatMap, isRequired, map, unsatisfied
-
Method Details
-
dependencies
Collection<Dependency<?>> dependencies() -
canApply
default boolean canApply()Description copied from interface:Action
Returns true if action can be applied. Return false if action application of action failed with exception, which is non-retryable.
-