android-components / mozilla.components.concept.storage / HistoryStorage / getVisited

getVisited

abstract fun getVisited(uris: List<String>, callback: (List<Boolean>) -> Unit): Unit (source)

Maps a list of page URIs to a list of booleans indicating if each URI was visited.

Parameters

uris - a list of page URIs about which "visited" information is being requested.

callback - will be invoked with a list of booleans indicating visited status of each corresponding page URI from uris.

abstract fun getVisited(callback: (List<String>) -> Unit): Unit (source)

Retrieves a list of all visited pages.

Parameters

callback - will be invoked with a list of all visited page URIs.