commonMain.com.copperleaf.ballast.debugger.BallastDebuggerInterceptor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ballast-debugger-jvm Show documentation
Show all versions of ballast-debugger-jvm Show documentation
Opinionated Kotlin multiplatform Repository Caching library based on Ballast MVI
package com.copperleaf.ballast.debugger
import com.copperleaf.ballast.BallastInterceptor
import com.copperleaf.ballast.BallastNotification
public class BallastDebuggerInterceptor(
private val connection: BallastDebuggerClientConnection<*>,
) : BallastInterceptor {
override suspend fun onNotify(notification: BallastNotification) {
connection.acceptNotification(notification)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy