Searched defs:Cursor (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/database/
H A DCursor.java29 * Cursor implementations are not required to be synchronized so code using a Cursor from multiple
30 * threads should perform its own synchronization when using the Cursor.
35 public interface Cursor extends Closeable { interface in inherits:Closeable
346 * Deactivates the Cursor, making all calls on it fail until {@link #requery} is called.
371 * Closes the Cursor, releasing all of its resources and making it completely invalid.
372 * Unlike {@link #deactivate()} a call to {@link #requery()} will not make the Cursor valid
431 * Return the URI at which notifications of changes in this Cursor's data
435 * ContentResolver.registerContentObserver} to find out about changes to this Cursor's

Completed in 56 milliseconds