Enumerations

The following enumerations are available globally.

  • A type of an update event on a specific object from the live query server.

    See more

    Declaration

    Swift

    @objc
    public enum PFLiveQueryEventType : Int
  • Represents an update on a specific object from the live query 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.
    See more

    Declaration

    Swift

    public enum Event<T>