Description
The kotlinx.coroutines.flow.Flow documentation states
- ### Not stable for inheritance
*- *The `Flow` interface is not stable for inheritance in 3rd party libraries*, as new methods
- might be added to this interface in the future, but is stable for use.
Consider whether it's safe for the Kotlin driver to inherit from it, as it does now, e.g.
public class AggregateFlow<T : Any>(private val wrapped: AggregatePublisher<T>) : Flow<T> {
|