ActionStream
fun ActionStream(actions: List<ActionStateEvent>, logicMethodEvents: List<LogicMethodEvent> = emptyList(), crashEvent: CrashEventInfo? = null, selectedIndex: Int? = null, selectedLogicMethodCallId: String? = null, crashSelected: Boolean = false, autoSelectLatest: Boolean = true, excludedActionTypes: Set<String>, excludedLogicMethods: Set<String> = emptySet(), callIdToMethodIdentifier: Map<String, String> = emptyMap(), timeTravelEnabled: Boolean = false, showActions: Boolean = true, showLogicMethods: Boolean = true, onSelectAction: (Int?) -> Unit = {}, onSelectLogicMethod: (String?) -> Unit = {}, onSelectCrash: (Boolean) -> Unit = {}, onToggleAutoSelect: () -> Unit = {}, onAddExclusion: (String) -> Unit = {}, onRemoveExclusion: (String) -> Unit = {}, onSetExclusions: (Set<String>) -> Unit = {}, onAddLogicMethodExclusion: (String) -> Unit = {}, onRemoveLogicMethodExclusion: (String) -> Unit = {}, onToggleTimeTravel: () -> Unit = {}, onToggleShowActions: () -> Unit = {}, onToggleShowLogicMethods: () -> Unit = {}, onClear: () -> Unit)(source)
Displays a stream of actions and logic method events from publisher clients.