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

commonMain.ch.softappeal.yass2.remote.Message.kt Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package ch.softappeal.yass2.remote

sealed class Message

class Request(val serviceId: Int, val functionId: Int, val parameters: List) : Message()

sealed class Reply : Message() {
    abstract fun process(): Any?
}

class ValueReply(val value: Any?) : Reply() {
    override fun process() = value
}

class ExceptionReply(val exception: Exception) : Reply() {
    override fun process() = throw exception
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy