Class RunnableBase

    • Constructor Detail

      • RunnableBase

        public RunnableBase()
    • Method Detail

      • destroy

        public void destroy()
      • isDestroyed

        public boolean isDestroyed()
        Returns:
        true if the destroy() method has been called. False in any other case.
      • isAlive

        protected boolean isAlive()
        The semantic of RunnableBase class is it that can't continue "executing" as soon the destroy() method was invoked or the backing thread was interrupted.
        Returns:
        true if current RunnableBase can continue executing, false in any other case.