Archived
0

[WIP] try RxJava

This commit is contained in:
2020-05-21 00:28:10 +03:00
parent 980088b157
commit c9f396a999
14 changed files with 191 additions and 98 deletions

18
server-api/build.gradle Normal file
View File

@@ -0,0 +1,18 @@
ext {
netty_version = '4.1.22.Final';
library = [
rxjava: ['io.reactivex.rxjava3:rxjava:3.0.3'],
netty: [
"io.netty:netty-transport:$netty_version"
]
]
}
dependencies {
/* COMPONENTS */
compile project(':protocol')
compile library.rxjava
implementation library.netty
}