We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f453cc1 commit 24209edCopy full SHA for 24209ed
mvicore-base/src/commonMain/kotlin/com/badoo/mvicore/common/binder/Binder.kt
@@ -12,7 +12,9 @@ interface Binder : Cancellable {
12
fun <Out, In> bind(connection: Connection<Out, In>)
13
}
14
15
+@Suppress("FunctionName")
16
fun Binder(): Binder = SimpleBinder()
17
18
fun Binder(lifecycle: Lifecycle): Binder = LifecycleBinder(lifecycle)
19
20
internal class SimpleBinder : Binder {
0 commit comments