Interface Callback.Void

  • Enclosing class:
    Callback
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @Deprecated(since="4.0",
                forRemoval=true)
    @FunctionalInterface
    public static interface Callback.Void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Since 4.0. Use Runnable instead.
    Use this if you need a void callback.
    Author:
    Bauke Scholtz
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void invoke()
      Deprecated, for removal: This API element is subject to removal in a future version.
      This method should be invoked by the method where you're passing this callback instance to.
    • Method Detail

      • invoke

        void invoke()
        Deprecated, for removal: This API element is subject to removal in a future version.
        This method should be invoked by the method where you're passing this callback instance to.