io.provenance.eventstream.stream.decoder.Decoder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-core Show documentation
Show all versions of es-core Show documentation
A collection of libraries to connect and stream blocks from a node
The newest version!
package io.provenance.eventstream.stream.decoder
import io.provenance.eventstream.adapter.json.decoder.DecoderEngine
import io.provenance.eventstream.stream.rpc.response.MessageType
sealed class Decoder(val decoder: DecoderEngine) {
abstract val priority: Int
abstract fun decode(input: String): MessageType?
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy