Config

data class Config(    val tag: Any = Master.NO_TAG,     val delay: Int = 0,     val threshold: Float = 0.65f,     val preload: Boolean = false,     val releaseOnInActive: Boolean = false,     val repeatMode: Int = Player.REPEAT_MODE_OFF,     val callbacks: Set<Playback.Callback> = emptySet(),     val controller: Playback.Controller? = null,     val initialPlaybackInfo: PlaybackInfo? = null,     val artworkHintListener: Playback.ArtworkHintListener? = null,     val tokenUpdateListener: Playback.TokenUpdateListener? = null,     val networkTypeChangeListener: Playback.NetworkTypeChangeListener? = null)

Constructors

Link copied to clipboard
fun Config(    tag: Any = Master.NO_TAG,     delay: Int = 0,     threshold: Float = 0.65f,     preload: Boolean = false,     releaseOnInActive: Boolean = false,     repeatMode: Int = Player.REPEAT_MODE_OFF,     callbacks: Set<Playback.Callback> = emptySet(),     controller: Playback.Controller? = null,     initialPlaybackInfo: PlaybackInfo? = null,     artworkHintListener: Playback.ArtworkHintListener? = null,     tokenUpdateListener: Playback.TokenUpdateListener? = null,     networkTypeChangeListener: Playback.NetworkTypeChangeListener? = null)

Properties

Link copied to clipboard
val artworkHintListener: Playback.ArtworkHintListener? = null
Link copied to clipboard
val callbacks: Set<Playback.Callback>
Link copied to clipboard
val controller: Playback.Controller? = null
Link copied to clipboard
val delay: Int = 0
Link copied to clipboard
val initialPlaybackInfo: PlaybackInfo? = null
Link copied to clipboard
val networkTypeChangeListener: Playback.NetworkTypeChangeListener? = null
Link copied to clipboard
val preload: Boolean = false
Link copied to clipboard
val releaseOnInActive: Boolean = false
Link copied to clipboard
val repeatMode: Int
Link copied to clipboard
val tag: Any
Link copied to clipboard
val threshold: Float = 0.65f
Link copied to clipboard
val tokenUpdateListener: Playback.TokenUpdateListener? = null