Skip to content

一行代码发送和接收事件LiveData|LifeCycle|Coroutine特性的事件总线框架

License

Notifications You must be signed in to change notification settings

TomatoWithEgg/Channel

 
 

Repository files navigation

Channel

基于最新特性的Android事件分发框架

使用文档

特点

  • 基于Kotlin的简洁API设计
  • 扩展协程实现异步处理和异常捕捉
  • 扩展LiveData实现前台数据接收
  • 扩展LifeCycle实现生命周期绑定
  • 无注解不影响编译时间
  • 体积小巧仅6kb
  • 完善的文档和帮助
  • 上手简单, 仅四个主要函数

功能

  • 发送消息 + 标签
  • 仅发送标签
  • 自动注销
  • 自定义注销的生命周期, 手动取消观察者
  • 接收消息属于异步主线程作用域
  • 捕捉异常
  • 回调 catch/finaly
  • 消息延迟到应用前台时接收

任何问题可点击QQ群图标, 联系作者技术帮助


在项目根目录的 build.gradle 添加仓库

allprojects {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

在 module 的 build.gradle 添加依赖

implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9"

implementation 'com.github.liangjingkanji:Channel:1.1.1'

License

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.

About

一行代码发送和接收事件LiveData|LifeCycle|Coroutine特性的事件总线框架

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 100.0%