ServiceWorkerContainer

Exposes the JavaScript ServiceWorkerContainer to Kotlin

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
Link copied to clipboard
open var oncontrollerchange: (Event) -> Unit?
Link copied to clipboard
open var onmessage: (MessageEvent) -> Unit?
Link copied to clipboard
open val ready: Promise<*>

Functions

Link copied to clipboard
fun addEventListener(type: String, callback: (Event) -> Unit?)
fun addEventListener(type: String, callback: EventListener?)
fun addEventListener(type: String, callback: (Event) -> Unit?, options: Boolean)
fun addEventListener(type: String, callback: (Event) -> Unit?, options: AddEventListenerOptions)
fun addEventListener(type: String, callback: EventListener?, options: Boolean)
Link copied to clipboard
Link copied to clipboard
fun getRegistration(clientURL: String): Promise<*>
Link copied to clipboard
Link copied to clipboard
fun register(scriptURL: String, options: RegistrationOptions): Promise<*>
Link copied to clipboard
fun removeEventListener(type: String, callback: (Event) -> Unit?)
fun removeEventListener(type: String, callback: (Event) -> Unit?, options: Boolean)
fun removeEventListener(type: String, callback: (Event) -> Unit?, options: EventListenerOptions)
fun removeEventListener(type: String, callback: EventListener?, options: Boolean)
Link copied to clipboard