Package org.refcodes.mixin
Interface Abortable
-
public interface AbortableAborts any continuing operation of the implementing instance. For example a looping or iterating operation can be aborted by skipping all left iterations.The
Restartableinterface's methodRestartable.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 voidabort()Skips any iterations left, thereby finishing the implementing instance.
-