commonMain.com.ditchoom.data.FlowReader.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 com.ditchoom.buffer.SuspendCloseable
import kotlinx.coroutines.flow.Flow
import kotlin.time.ExperimentalTime
@ExperimentalTime
interface FlowReader : SuspendCloseable {
fun read(): Flow
}