Package com.couchbase.lite
Class QueryChange
- java.lang.Object
-
- com.couchbase.lite.QueryChange
-
public final class QueryChange extends java.lang.ObjectInformation about changes in a query result changes, reported by a live query.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetError()Return the error occurred when running the query.QuerygetQuery()Return the source live query object.ResultSetgetResults()Return the new query result.java.lang.StringtoString()
-
-
-
Method Detail
-
getQuery
@NonNull public Query getQuery()
Return the source live query object.
-
getResults
@Nullable public ResultSet getResults()
Return the new query result.
-
getError
@Nullable public java.lang.Throwable getError()
Return the error occurred when running the query.
-
toString
@NonNull public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-