Event

public enum Event<T> where T : ParseObject

Represents an update on a specific object from the ParseLiveQuery Server.

  • Entered: The object has been updated, and is now included in the query.
  • Left: The object has been updated, and is no longer included in the query.
  • Created: The object has been created, and is a part of the query.
  • Updated: The object has been updated, and is still a part of the query.
  • Deleted: The object has been deleted, and is no longer included in the query.
  • The object has been updated, and is now included in the query.

    Declaration

    Swift

    case entered(T)
  • The object has been updated, and is no longer included in the query.

    Declaration

    Swift

    case left(T)
  • The object has been created, and is a part of the query.

    Declaration

    Swift

    case created(T)
  • The object has been updated, and is still a part of the query.

    Declaration

    Swift

    case updated(T)
  • The object has been deleted, and is no longer included in the query.

    Declaration

    Swift

    case deleted(T)