Interface ISubscriber

  • 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 ISubscriber
    This function interface provides one method for dispatching the results from an event.
    Author:
    kong
    • Method Detail

      • dispatch

        java.lang.Object dispatch​(java.lang.Object... args)
        To dispatch results from one event.
        Parameters:
        args - all the results in an array
        Returns:
        an object or null