File tree 5 files changed +9
-9
lines changed
kotlinx-coroutines-reactive/src
kotlinx-coroutines-reactor/src
kotlinx-coroutines-rx2/src
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import kotlin.internal.LowPriorityInOverloadResolution
18
18
/* *
19
19
* Creates cold reactive [Publisher] that runs a given [block] in a coroutine.
20
20
* Every time the returned flux is subscribed, it starts a new coroutine in the specified [context].
21
- * Coroutine [ emits] [Subscriber.onNext] values with `send`, [ completes] [Subscriber.onComplete]
22
- * when the coroutine completes or channel is explicitly closed and emits [ error] [Subscriber.onError]
21
+ * Coroutine emits ( [Subscriber.onNext]) values with `send`, completes ( [Subscriber.onComplete])
22
+ * when the coroutine completes or channel is explicitly closed and emits error ( [Subscriber.onError])
23
23
* if coroutine throws an exception or closes channel with a cause.
24
24
* Unsubscribing cancels running coroutine.
25
25
*
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import kotlin.internal.*
20
20
/* *
21
21
* Creates cold reactive [Flux] that runs a given [block] in a coroutine.
22
22
* Every time the returned flux is subscribed, it starts a new coroutine in the specified [context].
23
- * Coroutine [ emits] [Subscriber.onNext] values with `send`, [ completes] [Subscriber.onComplete]
24
- * when the coroutine completes or channel is explicitly closed and emits [ error] [Subscriber.onError]
23
+ * Coroutine emits ( [Subscriber.onNext]) values with `send`, completes ( [Subscriber.onComplete])
24
+ * when the coroutine completes or channel is explicitly closed and emits error ( [Subscriber.onError])
25
25
* if coroutine throws an exception or closes channel with a cause.
26
26
* Unsubscribing cancels running coroutine.
27
27
*
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import kotlin.internal.*
15
15
/* *
16
16
* Creates cold [mono][Mono] that will run a given [block] in a coroutine and emits its result.
17
17
* Every time the returned mono is subscribed, it starts a new coroutine.
18
- * If [block] result is `null`, [success][ MonoSink.success] is invoked without a value.
18
+ * If [block] result is `null`, [MonoSink.success] is invoked without a value.
19
19
* Unsubscribing cancels running coroutine.
20
20
*
21
21
* Coroutine context can be specified with [context] argument.
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import kotlin.internal.*
17
17
* Creates cold [flowable][Flowable] that will run a given [block] in a coroutine.
18
18
* Every time the returned flowable is subscribed, it starts a new coroutine.
19
19
*
20
- * Coroutine [ emits] [ObservableEmitter.onNext] values with `send`, [ completes] [ObservableEmitter.onComplete]
21
- * when the coroutine completes or channel is explicitly closed and emits [ error] [ObservableEmitter.onError]
20
+ * Coroutine emits ( [ObservableEmitter.onNext]) values with `send`, completes ( [ObservableEmitter.onComplete])
21
+ * when the coroutine completes or channel is explicitly closed and emits error ( [ObservableEmitter.onError])
22
22
* if coroutine throws an exception or closes channel with a cause.
23
23
* Unsubscribing cancels running coroutine.
24
24
*
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import kotlin.internal.*
20
20
* Creates cold [observable][Observable] that will run a given [block] in a coroutine.
21
21
* Every time the returned observable is subscribed, it starts a new coroutine.
22
22
*
23
- * Coroutine [ emits] [ObservableEmitter.onNext] values with `send`, [ completes] [ObservableEmitter.onComplete]
24
- * when the coroutine completes or channel is explicitly closed and emits [ error] [ObservableEmitter.onError]
23
+ * Coroutine emits ( [ObservableEmitter.onNext]) values with `send`, completes ( [ObservableEmitter.onComplete])
24
+ * when the coroutine completes or channel is explicitly closed and emits error ( [ObservableEmitter.onError])
25
25
* if coroutine throws an exception or closes channel with a cause.
26
26
* Unsubscribing cancels running coroutine.
27
27
*
You can’t perform that action at this time.
0 commit comments