commonMain.com.caesarealabs.rpc4k.runtime.user.EventSubscription.kt Maven / Gradle / Ivy
The newest version!
package com.caesarealabs.rpc4k.runtime.user
import kotlinx.coroutines.flow.Flow
/**
* A [Flow], that additionally exposes the listener ID of the event subscription.
*/
public class EventSubscription(public val listenerId: String, private val flow: Flow): Flow by flow