Class LoginSolver

    • Constructor Summary

      Constructors 
      Constructor Description
      LoginSolver()  
      LoginSolver​(java.lang.String override)
      A constructor that allows you to override the event name This is used for extending our login solver
    • Constructor Detail

      • LoginSolver

        public LoginSolver()
      • LoginSolver

        public LoginSolver​(java.lang.String override)
        A constructor that allows you to override the event name This is used for extending our login solver
        Parameters:
        override - name of your random event
    • Method Detail

      • shouldExecute

        public boolean shouldExecute()
        Description copied from class: RandomSolver
        Checks whether the random even solver should execute; This method must be overridden
        Specified by:
        shouldExecute in class RandomSolver
        Returns:
        true as long as the random executor should be executing
      • onStart

        public void onStart()
        Description copied from class: RandomSolver
        Runs once when the random solver first activates; This method can be optionally overridden
        Overrides:
        onStart in class RandomSolver
      • onLoop

        public int onLoop()
        Description copied from class: RandomSolver
        Runs as long as shouldExecute returns true; This method must be overridden
        Specified by:
        onLoop in class RandomSolver
        Returns:
        time to delay before next onLoop
      • onFinish

        public void onFinish()
        Description copied from class: RandomSolver
        Runs once at the end (when shouldExecute first returns false); This method can be optionally overridden
        Overrides:
        onFinish in class RandomSolver
      • getDebugInfo

        public java.lang.String getDebugInfo()
        Description copied from class: RandomSolver
        This will return state information about the solver useful for debugging
        Overrides:
        getDebugInfo in class RandomSolver
        Returns:
        state information about the solver