kmath
common
kmath-coroutines
/
space.kscience.kmath.coroutines
/
AsyncFlow
Async
Flow
common
class
AsyncFlow
<
out
T
>
:
Flow
<
T
>
Content copied to clipboard
Functions
Extensions
Sources
Functions
collect
Link copied to clipboard
common
open
suspend override
fun
collect
(
collector
:
FlowCollector
<
T
>
)
Content copied to clipboard
Extensions
collect
Link copied to clipboard
common
suspend
fun
<
T
>
AsyncFlow
<
T
>
.
collect
(
concurrency
:
Int
,
collector
:
FlowCollector
<
T
>
)
Content copied to clipboard
inline suspend
fun
<
T
>
AsyncFlow
<
T
>
.
collect
(
concurrency
:
Int
,
crossinline
action
:
suspend
(
T
)
->
Unit
)
Content copied to clipboard
map
Link copied to clipboard
common
inline
fun
<
T
,
R
>
AsyncFlow
<
T
>
.
map
(
crossinline
action
:
(
T
)
->
R
)
:
AsyncFlow
<
R
>
Content copied to clipboard
Sources
common source
Link copied to clipboard