rrva
01/09/2018, 2:40 PMinterface BootstrapListener {
fun onBootstrapComplete()
}
class PlayoutSocketClient(private val config: PlayoutClientConfig, private val bootstrapListener: BootstrapListener = object : BootstrapListener {
override fun onBootstrapComplete() {}
}) {
What is a more concise way to provide a default implementation for the bootstrapListener constructor parameter?