Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package com.launchdarkly.observability.replay
* @property debug enables verbose logging if true as well as other debug functionality. Defaults to false.
* @property privacyProfile privacy profile that controls masking behavior
* @property capturePeriodMillis period between captures
* @property enabled controls whether session replay starts capturing immediately
* @property enabled controls whether session replay starts capturing immediately on initialization
*/
data class ReplayOptions(
val enabled: Boolean = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ object LDReplay {
}

/**
* Starts session replay capture and event buffering if configured.
* Starts session replay capture
*/
fun start() {
delegate.start()
}

/**
* Stops session replay capture and event buffering until started again.
* Stops session replay capture
*/
fun stop() {
delegate.stop()
Expand Down
Loading