ReplayEvents

data class ReplayEvents(events: MutableList<ReplayEventBase>)

Replay event that mapped from ReplayHistoryMapper or created on your own. Override this to support new or custom events. Each event can be replayed by the MapboxReplayer.

Parameters

events

Assumes chronological order, index 0 moves to List.size over time

Constructors

ReplayEvents
Link copied to clipboard
fun ReplayEvents(events: MutableList<ReplayEventBase>)
Assumes chronological order, index 0 moves to List.size over time

Functions

component1
Link copied to clipboard
operator fun component1(): MutableList<ReplayEventBase>
copy
Link copied to clipboard
fun copy(events: MutableList<ReplayEventBase>): ReplayEvents
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

events
Link copied to clipboard
val events: MutableList<ReplayEventBase>
Assumes chronological order, index 0 moves to List.size over time