commonMain.com.ditchoom.data.Reader.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socket-js Show documentation
Show all versions of socket-js Show documentation
Simple multiplatform kotlin coroutines based socket.
package com.ditchoom.data
import kotlin.time.Duration
import kotlin.time.ExperimentalTime
@ExperimentalTime
interface Reader {
fun isOpen(): Boolean
suspend fun readData(timeout: Duration): T
}