Interface SignalRunnable<T>

Type Parameters:
T - the type of listener

public interface SignalRunnable<T>
Decouples specific listener interfaces from the signaling implementation.
Author:
damonkohler@google.com (Damon Kohler)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run(T listener)
    This method will be called when the listener should be signaled.
  • Method Details

    • run

      void run(T listener)
      This method will be called when the listener should be signaled. Users should override this method to call the appropriate listener method(s).
      Parameters:
      listener - the listener to signal