Class ClientDestroyed

java.lang.Object
org.oddjob.jmx.client.ClientDestroyed
All Implemented Interfaces:
Serializable, State

public class ClientDestroyed extends Object implements State
See Also:
  • Constructor Details

    • ClientDestroyed

      public ClientDestroyed()
  • Method Details

    • isReady

      public boolean isReady()
      Description copied from interface: State
      Is a job ready to be executed.
      Specified by:
      isReady in interface State
      Returns:
      true/false.
    • isExecuting

      public boolean isExecuting()
      Description copied from interface: State
      Is the job executing. This is normally when the thread of execution is still within the job.
      Specified by:
      isExecuting in interface State
      Returns:
      true/false.
    • isStoppable

      public boolean isStoppable()
      Description copied from interface: State
      Can a job be stopped? This is a catch all for jobs that are active or executing.
      Specified by:
      isStoppable in interface State
      Returns:
      true/false.
    • isComplete

      public boolean isComplete()
      Description copied from interface: State
      Is a job or service complete?
      Specified by:
      isComplete in interface State
      Returns:
      true/false.
    • isIncomplete

      public boolean isIncomplete()
      Description copied from interface: State
      Is a job or service incomplete. The implication of incomplete is that it could be retried to be complete at some future date.
      Specified by:
      isIncomplete in interface State
      Returns:
      true/false.
    • isException

      public boolean isException()
      Description copied from interface: State
      Is a job in an exception state. This is generally due to an unexpected error, as opposed to incomplete which in some way is expected.
      Specified by:
      isException in interface State
      Returns:
      true/false.
    • isDestroyed

      public boolean isDestroyed()
      Description copied from interface: State
      The job is destroyed. It is no longer available for anything.
      Specified by:
      isDestroyed in interface State
      Returns:
      true/false.
    • toString

      public String toString()
      Overrides:
      toString in class Object