abstract fun getVisited(uris: List<String>): Deferred<List<Boolean>>
(source)
Maps a list of page URIs to a list of booleans indicating if each URI was visited.
uris
- a list of page URIs about which "visited" information is being requested.
Return
A Deferred list of booleans indicating visited status of each
corresponding page URI from uris.
abstract fun getVisited(): Deferred<List<String>>
(source)
Retrieves a list of all visited pages.
Return
A Deferred list of all visited page URIs.