File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
kotlinx-coroutines-core/jvm/src/flow Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,14 @@ package kotlinx.coroutines.flow
3
3
import kotlinx.coroutines.Job
4
4
import kotlinx.coroutines.channels.TickerMode
5
5
import kotlinx.coroutines.channels.ticker
6
- import java.util.*
7
6
import kotlin.coroutines.CoroutineContext
8
7
import kotlin.coroutines.EmptyCoroutineContext
9
8
10
9
/* *
11
10
* Creates a flow that produces the first item after the given initial delay and subsequent items with the
12
11
* given delay between them.
13
12
*
14
- * The resulting flow is a callback flow, which basically listens @see [Timer.schedule ]
13
+ * The resulting flow is basically using [ticker ]
15
14
*
16
15
* This Flow stops producing elements immediately after [Job.cancel] invocation.
17
16
*
You can’t perform that action at this time.
0 commit comments