Interface ChangeListener

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

    @FunctionalInterface
    public interface ChangeListener
    Represents a listener that subscribes to the changes of Observable

    This is a functional interface whose functional method is call()

    Author:
    Stanisław Góra
    See Also:
    ListenerPriority
    • Method Summary

      Modifier and Type Method Description
      void call()
      Gets called whenever the subscribed Observable is changed.
    • Method Detail

      • call

        void call()
        Gets called whenever the subscribed Observable is changed.