项目作者: zhihu

项目描述 :
Bind observables to the lifecycle of Activity or Fragment in a non-invasive way.
高级语言: Java
项目地址: git://github.com/zhihu/RxLifecycle.git
创建时间: 2017-01-21T07:00:50Z
项目社区:https://github.com/zhihu/RxLifecycle

开源协议:

下载


RxLifecyle is a library that can help you to unsubscribe the observable sequences automatically when a activity or fragment is destroying. There are some differences between this library and trello/RxLifecycle:

  • This library will actually unsubscribe the sequence (See here). It means that the downstream observer will not receive onComplete(), onError()… anymore when the unsubscription occurs.

  • This library doesn’t require you to inherit any activity or fragment. It will insert a non-gui fragment to your activity or fragment to listen the lifecycle events.

The simplest usage:

  1. Observable.interval(0, 2, TimeUnit.SECONDS)
  2. // ...
  3. .compose(RxLifecycle.bind(this)
  4. .<Long>disposeObservableWhen(LifecycleEvent.DESTROY_VIEW))
  5. .subscribe();

In order to make sure the downstream will not continue to emit items, you need to put the compose(RxLifecycle.bind ..) at the bottom of the chain call. See the example for learning more usages.

To integrate this library to your project, you need to add the JitPack repository to build.gradle repositories firstly.

  1. repositories {
  2. maven { url "https://jitpack.io" }
  3. }

And then add library dependencies:

  1. dependencies {
  2. compile 'com.github.nekocode.rxlifecycle:rxlifecycle:{lastest-version}'
  3. compile 'com.github.nekocode.rxlifecycle:rxlifecycle-compact:{lastest-version}' // Optional
  4. }

This project is licensed under Apache 2.0. The lastest version of the library is Release.