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

remote.Message.kt Maven / Gradle / Ivy

There is a newer version: 66.0.0
Show newest version
package ch.softappeal.yass.remote

sealed class Message

class Request(val serviceId: Int, val methodId: Int, val arguments: List) : Message()

abstract class Reply : Message() {
    internal 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