Interface Cancellable

  • All Superinterfaces:
    java.lang.Runnable

    public interface Cancellable
    extends java.lang.Runnable
    Interface to cancel a Runnable callback.
    Since:
    2.1
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void cancel()
      Cancels the execution of this Runnable callback.
      • Methods inherited from interface java.lang.Runnable

        run
    • Method Detail

      • cancel

        void cancel()
        Cancels the execution of this Runnable callback. This method has no effect if this has already executed.