Interface Event.EventUpdatedCallback

Enclosing class:
Event

public static interface Event.EventUpdatedCallback
Callback Interface for when event detects a realtime update.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called when an event detects it is deleted.
    void
    Called when the realtime listener fails.
    void
    Called when an event detects a change.
  • Method Details

    • onUpdated

      void onUpdated()
      Called when an event detects a change.
    • onDeleted

      void onDeleted()
      Called when an event detects it is deleted.
    • onFailure

      void onFailure(Exception e)
      Called when the realtime listener fails.
      Parameters:
      e - Exception message.