Interface ListenerRegistration<T>

Type Parameters:
T - the platform-specific listener class

public interface ListenerRegistration<T>
This class is responsible for registering listeners to the listener manager of the platform that is currently in use. Unfortunately due to the major differences between the platforms (when it comes to listeners) every Floodgate platform has to implement their own listeners.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    register(T listener)
    This method will register the specified listener.
  • Method Details

    • register

      void register(T listener)
      This method will register the specified listener.
      Parameters:
      listener - the listener to register