5 Star 2 Fork 0

hihopeorg / AutoDispose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 3.21 KB
一键复制 编辑 原始数据 按行查看 历史
hihope 提交于 2021-07-04 21:50 . update code

AutoDispose

本项目是基于开源项目AutoDispose进行ohos化的移植和开发的,可以通过项目标签以及github地址(https://github.com/uber/AutoDispose)追踪到原项目版本

项目介绍

  • 项目名称:自动绑定+处理RxJava流
  • 所属系列:ohos的第三方组件适配移植
  • 功能:以自动绑定+解绑Rxjava流的方式,解决使用Rxjava时发生的内存泄漏问题
  • 项目移植状态:完成
  • 调用差异:无
  • 项目作者和维护人:hihope
  • 联系方式:hihope@hoperun.com
  • 原项目Doc地址:https://github.com/uber/AutoDispose
  • 原项目基线版本:无releases版本
  • 编程语言:Java
  • 外部库依赖:rxjava3

效果展示

安装教程

方法1.
  1. 下载依赖库har包autoDispose.har。

  2. 启动 DevEco Studio,将下载的har包,导入工程目录“entry->libs”下。

  3. 在moudle级别下的build.gradle文件中添加依赖,在dependences标签中增加对libs目录下har包的引用。

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])
    	……
    }
  4. 在导入的har包上点击右键,选择“Add as Library”对包进行引用,选择需要引用的模块,并点击“OK”即引用成功。

方法2.
  1. 在工程的build.gradle的allprojects中,添加HAR所在的Maven仓地址

    repositories {
        maven {
            url 'http://106.15.92.248:8081/repository/Releases/' 
        }
    }
    1. 在应用模块的build.gradle的dependencies闭包中,添加如下代码:

      dependencies {
          implementation 'com.uber.autodispose2:autodispose:1.0.1'
      }

使用说明

  1. 在你的代码中直接使用,比如:
    //在Ability中使用
    myObservable
        .map(...)
        .doOnDispose(() -> HiLog.info(Label, "Disposing subscription from onActive()"))
        .subscribeOn(...)
        .observeOn(...)
        .as(AutoDispose.autoDisposable(ohosLifecycleScopeProvider.from(this))
        .subscribe(s -> ...);
  1. 通过给Observable 添加这行代码:

     ```
        as(AutoDispose.autoDisposable(ohosLifecycleScopeProvider.from(lifecycleOwner))
     ```

    该Observable就会在Ability的onBackground()生命周期时,自动解除订阅,以防止因生命周期组件的生命周期而导致的RxJava内存泄漏事件。

  2. 这行代码用于监听Rxjava流结束时回掉

     .doOnDispose(() ->
    HiLog.info(Label, "Disposing subscription from onActive()"))

版本迭代

  • v1.0.1

版权和许可信息

  • Apache Licence Copyright (C) 2017 Uber Technologies

    Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Java
1
https://gitee.com/hihopeorg/AutoDispose.git
git@gitee.com:hihopeorg/AutoDispose.git
hihopeorg
AutoDispose
AutoDispose
master

搜索帮助