public final class

SupportSQLiteCompat.Api29Impl

extends java.lang.Object

 java.lang.Object

↳androidx.sqlite.db.SupportSQLiteCompat.Api29Impl

Overview

Helper for accessing functions that require SDK version 29 and higher.

Summary

Methods
public static java.util.List<Uri>getNotificationUris(Cursor cursor)

Return the URIs at which notifications of changes in this Cursor's data will be delivered, as previously set by SupportSQLiteCompat.Api29Impl.setNotificationUris(Cursor, ContentResolver, List).

public static voidsetNotificationUris(Cursor cursor, ContentResolver cr, java.util.List<Uri> uris)

Similar to , except this version allows to watch multiple content URIs for changes.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Methods

public static void setNotificationUris(Cursor cursor, ContentResolver cr, java.util.List<Uri> uris)

Similar to , except this version allows to watch multiple content URIs for changes.

Parameters:

cr: The content resolver from the caller's context. The listener attached to this resolver will be notified.
uris: The content URIs to watch.

public static java.util.List<Uri> getNotificationUris(Cursor cursor)

Return the URIs at which notifications of changes in this Cursor's data will be delivered, as previously set by SupportSQLiteCompat.Api29Impl.setNotificationUris(Cursor, ContentResolver, List).

Returns:

Returns URIs that can be used with to find out about changes to this Cursor's data. May be null if no notification URI has been set.