Android数据通信框架

数据通信框架

  • rxjava2

异步框架

    compile 'io.reactivex.rxjava2:rxjava:2.1.3'
    compile 'io.reactivex.rxjava2:rxandroid:2.0.1'

    implementation 'io.reactivex.rxjava2:rxjava:2.1.3'
    implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
  • eventbus

组件之间,进程之间相互传递数据!
EventBus官网地址:
http://greenrobot.org/eventbus/documentation/
EventBus github地址:
https://github.com/greenrobot/EventBus

implementation 'org.greenrobot:eventbus:3.1.1'

你可能感兴趣的:(Android数据通信框架)