You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Accepts the given [collector] and [emits][FlowCollector.emit] values into it.
135
-
* This method should never be used directly. To emit values from a shared flow into a specific collector, either `collector.emitAll(flow)` or `collect { ... }` extension
136
-
* should be used.
135
+
* To emit values from a shared flow into a specific collector, either `collector.emitAll(flow)` or `collect { ... }`
136
+
* SAM-conversion can be used.
137
137
*
138
138
* **A shared flow never completes**. A call to [Flow.collect] or any other terminal operator
139
139
* on a shared flow never completes normally.
140
140
*
141
-
* @see [Flow.collect]
141
+
* @see [Flow.collect] for implementation and inheritance details.
0 commit comments