toggle menu
kilua-project
0.0.15
common
switch theme
search in API
kilua-dom
/
web.dom
/
Worker
Worker
open
class
Worker
(
scriptURL
:
String
,
options
:
WorkerOptions
)
:
EventTarget
,
AbstractWorker
,
JsAny
Exposes the JavaScript
Worker
to Kotlin
Members
Constructors
Worker
Link copied to clipboard
constructor
(
scriptURL
:
String
,
options
:
WorkerOptions
)
Properties
onerror
Link copied to clipboard
open
override
var
onerror
:
(
Event
)
->
Unit
?
onmessage
Link copied to clipboard
var
onmessage
:
(
MessageEvent
)
->
Unit
?
Functions
add
Event
Listener
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
)
fun
addEventListener
(
type
:
String
,
callback
:
EventListener
?
,
options
:
AddEventListenerOptions
)
dispatch
Event
Link copied to clipboard
fun
dispatchEvent
(
event
:
Event
)
:
Boolean
post
Message
Link copied to clipboard
fun
postMessage
(
message
:
JsAny
?
,
transfer
:
JsArray
<
JsAny
>
)
remove
Event
Listener
Link copied to clipboard
fun
removeEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
)
fun
removeEventListener
(
type
:
String
,
callback
:
EventListener
?
)
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
)
fun
removeEventListener
(
type
:
String
,
callback
:
EventListener
?
,
options
:
EventListenerOptions
)
terminate
Link copied to clipboard
fun
terminate
(
)