Time Store
data class TimeStore(val onStarted: MutableList<TimeMarker>, val onIteration: MutableList<TimeMarker>, val onFinished: MutableList<TimeMarker>, val onStopped: MutableList<TimeMarker>)
Store for all TimeMarkers of GA.
Constructors
Link copied to clipboard
constructor(startedSize: Int = 10, onIterationSize: Int = 200, finishedSize: Int = 10, stoppedSize: Int = 10)
Creates TimeStore with default sizes.
constructor(onStarted: MutableList<TimeMarker>, onIteration: MutableList<TimeMarker>, onFinished: MutableList<TimeMarker>, onStopped: MutableList<TimeMarker>)
Properties
Link copied to clipboard
all time markers for State.FINISHED of GA
Link copied to clipboard
all time markers for iterations
Link copied to clipboard
all time markers for launches by GA.start, GA.resume and GA.restart
Link copied to clipboard
all time markers for State.STOPPED of GA