CacheStorage

JS
1.1
abstract class CacheStorage
(source)

Exposes the JavaScript CacheStorage to Kotlin

Constructors

JS
1.1

<init>

Exposes the JavaScript CacheStorage to Kotlin

CacheStorage ( )

Functions

JS
1.1

delete

fun delete ( cacheName : String ) : Promise < Boolean >
JS
1.1

has

fun has ( cacheName : String ) : Promise < Boolean >
JS
1.1

keys

fun keys ( ) : Promise < Array < String > >
JS
1.1

match

fun match (
request : dynamic ,
options : CacheQueryOptions = definedExternally
) : Promise < Any ? >
JS
1.1

open

fun open ( cacheName : String ) : Promise < Cache >