PFLiveQueryEventType

@objc
public enum PFLiveQueryEventType : Int

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

  • The object has been updated, and is now included in the query.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    case deleted