All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.lamart.lux.Signal.kt Maven / Gradle / Ivy

There is a newer version: 0.5.2
Show newest version
package io.lamart.lux

sealed class Signal {
    data class Start internal constructor(val input: I) : Signal()
    data class Next internal constructor(val output: O) : Signal()
    data class End internal constructor(val reason: Throwable?) : Signal()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy