Chrome Reactive Kotlin
/
pl.wendigo.chrome.api.profiler
/
Profile
Profile
data class
Profile
(nodes:
List
<
ProfileNode
>, startTime:
Double
, endTime:
Double
, samples:
List
<
Int
>?, timeDeltas:
List
<
Int
>?)
Content copied to clipboard
Profile.
Constructors
Properties
Sources
Constructors
Profile
Link copied to clipboard
fun
Profile
(nodes:
List
<
ProfileNode
>, startTime:
Double
, endTime:
Double
, samples:
List
<
Int
>? = null, timeDeltas:
List
<
Int
>? = null)
Content copied to clipboard
Properties
endTime
Link copied to clipboard
val
endTime
:
Double
Content copied to clipboard
Profiling end timestamp in microseconds.
nodes
Link copied to clipboard
val
nodes
:
List
<
ProfileNode
>
Content copied to clipboard
The list of profile nodes.
samples
Link copied to clipboard
val
samples
:
List
<
Int
>? = null
Content copied to clipboard
Ids of samples top nodes.
startTime
Link copied to clipboard
val
startTime
:
Double
Content copied to clipboard
Profiling start timestamp in microseconds.
timeDeltas
Link copied to clipboard
val
timeDeltas
:
List
<
Int
>? = null
Content copied to clipboard
Time intervals between adjacent samples in microseconds.
Sources
jvm source
Link copied to clipboard