CBLLiveQueryChange

@interface CBLLiveQueryChange : NSObject

CBLLiveQueryChange contains the information about the query result changes reported by a live query object.

  • The source live query object.

    Declaration

    Objective-C

    @property (readonly, nonatomic) CBLLiveQuery *_Nonnull query;
  • The new query result.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) CBLQueryResultSet *rows;
  • The error occurred when running the query.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSError *error;