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

    Modifier and Type
    Method
    Description
    void
    Skips any operations left, thereby finishing the implementing instance's current operation.
  • Method Details

    • abort

      void abort()
      Skips any operations left, thereby finishing the implementing instance's current operation.