Class AbstractEvent

    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractEvent()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract Condition completed()
      Abstract Condition used to determine if current event is complete.
      abstract Condition failed()
      Abstract Condition used to determine if current event has failed.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Runnable

        run
    • Constructor Detail

      • AbstractEvent

        public AbstractEvent()
    • Method Detail

      • completed

        public abstract Condition completed()
        Abstract Condition used to determine if current event is complete.
        Returns:
        Condition used to determine if current event has completed successfully.
      • failed

        public abstract Condition failed()
        Abstract Condition used to determine if current event has failed.
        Returns:
        Condition used to determine if current event has failed.