Uses of Interface
com.caucho.health.predicate.HealthPredicate

Packages that use HealthPredicate
com.caucho.health.action   
com.caucho.health.predicate   
 

Uses of HealthPredicate in com.caucho.health.action
 

Classes in com.caucho.health.action that implement HealthPredicate
protected  class ActionSequence.IfExecuting
           
 

Methods in com.caucho.health.action that return types with arguments of type HealthPredicate
 java.util.List<HealthPredicate> AbstractHealthAction.getPredicates()
           
 

Methods in com.caucho.health.action with parameters of type HealthPredicate
 void AbstractHealthAction.add(HealthPredicate predicate)
           
 

Uses of HealthPredicate in com.caucho.health.predicate
 

Classes in com.caucho.health.predicate that implement HealthPredicate
 class AbstractCombiningPredicate
           
 class AbstractHealthCheckPredicate
           
 class AbstractHealthPredicate
           
 class AbstractScheduledHealthPredicate
          HealthPredicate that only matches during a scheduled event.
 class And
          Matches if all of the child predicates match.
 class EventPredicate
           
 class IfCriticalRechecked
          Qualifies an action to match only after the required number of rechecks have been performed.
 class IfCron
          Matches if the current time is in an active range configured by cron-style times.
 class IfExpr
          Qualifies an action to execute based on the evaluation of an JSP EL expression.
 class IfFlapping
          Qualifies an action to match only when the health check status is flapping.
 class IfHealthCritical
          Qualifies an action to match critical health status.
 class IfHealthEvent
          Qualifies an action to match only on a health event.
 class IfHealthFatal
          Qualifies an action to match critical health status.
 class IfHealthOk
          Qualifies an action to match OK health status.
 class IfHealthStatus
           
 class IfHealthUnknown
          Qualifies an action to match unknown results.
 class IfHealthWarning
          Qualifies an action to match warning health status.
 class IfMessage
          Qualifies an action to match health result message to a regular expression.
 class IfNotRecent
          Qualifies an action to match at most an amount of time after the last execution.
 class IfRechecked
          Qualifies an action to match only after the required number of rechecks have been performed.
 class IfRecovered
          Qualifies an action to match upon recovery of Resin health.
 class IfUptime
          Qualifies an action to match an amount of time after startup.
 class LifecyclePredicate
           
 class Nand
          Matches if all of the child predicates fail.
 class Nor
          Matches if none of the child predicates match.
 class Not
          Matches if the child predicate is false.
 class OnAbnormalStop
          Qualifies an action to match only when Resin is stopping with an non-OK exit code.
 class OnRestart
          Qualifies an action to match only when Resin is restarted by the watchdog.
 class OnStart
          Qualifies an action to match only when Resin is starting.
 class OnStop
          Qualifies an action to match only when Resin is stopping.
 class Or
          Matches if any of the child predicates match.
 

Methods in com.caucho.health.predicate that return types with arguments of type HealthPredicate
 java.util.List<HealthPredicate> AbstractCombiningPredicate.getPredicates()
           
 

Methods in com.caucho.health.predicate with parameters of type HealthPredicate
 void AbstractCombiningPredicate.add(HealthPredicate predicate)
           
 void Not.add(HealthPredicate predicate)
          Add a child predicate.
 

Constructors in com.caucho.health.predicate with parameters of type HealthPredicate
Not(HealthPredicate predicate)