File tree Expand file tree Collapse file tree 6 files changed +47
-13
lines changed
core-kotlin-concurrency-3
src/test/kotlin/com/baeldung/concatenateTwoFlows Expand file tree Collapse file tree 6 files changed +47
-13
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ This module contains articles about concurrency in Kotlin.
13
13
- [ Merging Kotlin Flows] ( https://www.baeldung.com/kotlin/flow-merging )
14
14
- [ Avoiding the ConcurrentModificationException in Kotlin] ( https://www.baeldung.com/kotlin/concurrent-modification-exception )
15
15
- [ Convert RxJava Single to Kotlin Coroutine Deferred] ( https://www.baeldung.com/kotlin/rxjava-single-coroutine-deferred )
16
- - [ Sequentially Concatenate 2 Kotlin Flows ] ( https://www.baeldung.com/kotlin/flows-sequential-concatenation )
16
+
17
17
- More articles: [[ <-- prev]] ( ../core-kotlin-concurrency-2 )
Original file line number Diff line number Diff line change 30
30
<version >${rxcoroutines.version} </version >
31
31
</dependency >
32
32
33
- <dependency >
34
- <groupId >org.jetbrains.kotlinx</groupId >
35
- <artifactId >kotlinx-coroutines-reactor</artifactId >
36
- <version >1.6.0</version >
37
- </dependency >
38
-
39
- <dependency >
40
- <groupId >io.projectreactor</groupId >
41
- <artifactId >reactor-core</artifactId >
42
- <version >3.4.11</version >
43
- </dependency >
44
-
45
33
</dependencies >
46
34
47
35
<properties >
Original file line number Diff line number Diff line change
1
+
2
+ ### Relevant articles:
3
+
4
+ - [ Sequentially Concatenate 2 Kotlin Flows] ( https://www.baeldung.com/kotlin/flows-sequential-concatenation )
Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+ <artifactId >core-kotlin-flows</artifactId >
5
+ <name >core-kotlin-flows</name >
6
+ <packaging >jar</packaging >
7
+
8
+ <parent >
9
+ <groupId >com.baeldung</groupId >
10
+ <artifactId >core-kotlin-modules</artifactId >
11
+ <version >1.0.0-SNAPSHOT</version >
12
+ </parent >
13
+
14
+ <dependencies >
15
+ <dependency >
16
+ <groupId >junit</groupId >
17
+ <artifactId >junit</artifactId >
18
+ <version >${junit.version} </version >
19
+ </dependency >
20
+
21
+
22
+
23
+ <dependency >
24
+ <groupId >org.jetbrains.kotlinx</groupId >
25
+ <artifactId >kotlinx-coroutines-reactor</artifactId >
26
+ <version >1.6.0</version >
27
+ </dependency >
28
+
29
+ <dependency >
30
+ <groupId >io.projectreactor</groupId >
31
+ <artifactId >reactor-core</artifactId >
32
+ <version >3.4.11</version >
33
+ </dependency >
34
+
35
+ </dependencies >
36
+
37
+ <properties >
38
+ <junit .version>4.13.2</junit .version>
39
+ </properties >
40
+
41
+ </project >
File renamed without changes.
Original file line number Diff line number Diff line change 49
49
<module >core-kotlin-datastructures-2</module >
50
50
<module >core-kotlin-design-patterns</module >
51
51
<module >core-kotlin-exceptions</module >
52
+ <module >core-kotlin-flows</module >
52
53
<module >core-kotlin-io</module >
53
54
<module >core-kotlin-lang</module >
54
55
<module >core-kotlin-lang-2</module >
You can’t perform that action at this time.
0 commit comments