Reaktiv
Toggle table of contents
wasmJs
Platform filter
wasmJs
Switch theme
Search in API
Reaktiv
reaktiv-devtools
/
io.github.syrou.reaktiv.devtools.ui
/
LogicMethodEvent
Logic
Method
Event
wasmJs
@
Serializable
sealed
class
LogicMethodEvent
(
source
)
Represents a logic method tracing event from a client.
Inheritors
Started
Completed
Failed
Members
Types
Completed
Link copied to clipboard
wasmJs
@
Serializable
data
class
Completed
(
val
clientId
:
String
,
val
timestamp
:
Long
,
val
callId
:
String
,
val
result
:
String
?
,
val
resultType
:
String
,
val
durationMs
:
Long
)
:
LogicMethodEvent
Failed
Link copied to clipboard
wasmJs
@
Serializable
data
class
Failed
(
val
clientId
:
String
,
val
timestamp
:
Long
,
val
callId
:
String
,
val
exceptionType
:
String
,
val
exceptionMessage
:
String
?
,
val
stackTrace
:
String
?
=
null
,
val
durationMs
:
Long
)
:
LogicMethodEvent
Started
Link copied to clipboard
wasmJs
@
Serializable
data
class
Started
(
val
clientId
:
String
,
val
timestamp
:
Long
,
val
callId
:
String
,
val
logicClass
:
String
,
val
methodName
:
String
,
val
params
:
Map
<
String
,
String
>
,
val
sourceFile
:
String
?
=
null
,
val
lineNumber
:
Int
?
=
null
,
val
githubSourceUrl
:
String
?
=
null
)
:
LogicMethodEvent
Properties
call
Id
Link copied to clipboard
wasmJs
abstract
val
callId
:
String
client
Id
Link copied to clipboard
wasmJs
abstract
val
clientId
:
String
timestamp
Link copied to clipboard
wasmJs
abstract
val
timestamp
:
Long