Interface Abortable



  • public interface Abortable
    Aborts any continuing operation of the implementing instance. For example a looping or iterating operation can be aborted by skipping all left iterations.

    The Restartable interface's method Restartable.restart() may be used to enable the instance to begin over again.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void abort​()
      Skips any iterations left, thereby finishing the implementing instance.
    • Method Detail

      • abort

        void abort​()
        Skips any iterations left, thereby finishing the implementing instance.