Package csw.command.api
Class DemandMatcherAll
- java.lang.Object
-
- csw.command.api.DemandMatcherAll
-
- All Implemented Interfaces:
StateMatcher,java.io.Serializable,scala.Equals,scala.Product
public class DemandMatcherAll extends java.lang.Object implements StateMatcher, scala.Product, java.io.Serializable
A StateMatcher which matches the CurrentState against the DemandStateparam: demand a DemandState that will provide the items for determining completion with the CurrentState param: timeout a timeout for which the matching should be executed. Once the timeout occurs, complete the match with MatchFailed response and appropriate failure exception.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DemandMatcherAll(DemandState demand, akka.util.Timeout timeout)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract static Rapply(T1 v1, T2 v2)booleancheck(CurrentState current)A predicate to match the current stateDemandStatedemand()Prefixprefix()The prefix of the destination component for which the current state is being matchedStateNamestateName()The name of the state to match forakka.util.Timeouttimeout()The maximum duration for which the matching is executed if not completed either successfully or unsuccessfullystatic java.lang.StringtoString()
-
-
-
Constructor Detail
-
DemandMatcherAll
public DemandMatcherAll(DemandState demand, akka.util.Timeout timeout)
-
-
Method Detail
-
apply
public abstract static R apply(T1 v1, T2 v2)
-
toString
public static java.lang.String toString()
-
demand
public DemandState demand()
-
timeout
public akka.util.Timeout timeout()
Description copied from interface:StateMatcherThe maximum duration for which the matching is executed if not completed either successfully or unsuccessfully- Specified by:
timeoutin interfaceStateMatcher- Returns:
- (undocumented)
-
prefix
public Prefix prefix()
The prefix of the destination component for which the current state is being matched- Specified by:
prefixin interfaceStateMatcher- Returns:
- the prefix of destination component
-
stateName
public StateName stateName()
The name of the state to match for- Specified by:
stateNamein interfaceStateMatcher- Returns:
- the name of the state
-
check
public boolean check(CurrentState current)
A predicate to match the current state- Specified by:
checkin interfaceStateMatcher- Parameters:
current- current state to be matched as represented byCurrentState- Returns:
- true if match is successful, false otherwise
-
-