Package rea.events

Interface UpdateListener<T extends UpdateEvent>

Type Parameters:
T - the type of the update event.

public interface UpdateListener<T extends UpdateEvent>
A listener for updates. It is used to listen for updates of a specific type.
Author:
José Paulo Leal jpleal@fc.up.pt
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onUpdate(T updateEvent)
    Method to be called when an update event is received.
  • Method Details

    • onUpdate

      void onUpdate(T updateEvent)
      Method to be called when an update event is received.
      Parameters:
      updateEvent - the update event.