Interface Cancellable

All Superinterfaces:
Runnable

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

    Modifier and Type
    Method
    Description
    void
    Cancels the execution of this Runnable callback.

    Methods inherited from interface java.lang.Runnable

    run
  • Method Details

    • cancel

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