DataSource.InvalidatedCallback

public static interface DataSource.InvalidatedCallback

android.arch.paging.DataSource.InvalidatedCallback


Invalidation callback for DataSource.

Used to signal when a DataSource a data source has become invalid, and that a new data source is needed to continue loading data.

Summary

Public methods

abstract void onInvalidated()

Called when the data backing the list has become invalid.

Public methods

onInvalidated

void onInvalidated ()

Called when the data backing the list has become invalid. This callback is typically used to signal that a new data source is needed.

This callback will be invoked on the thread that calls invalidate() . It is valid for the data source to invalidate itself during its load methods, or for an outside source to invalidate it.

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025年02月10日 UTC.