• 基于注释处理生成代码的RxBus[Deprecated!]


    Android RxBus

    该项目基于RxJava2 & RxAndroid,并且从AndroidKnife/RxBus中学习而实现的。

    使用annotation processing(注释处理)自动生成模板代码,避免了反射带来的性能影响。通过@Subscribe标记订阅方法,@Rxthread可设置订阅方法的运行线程,线程支持RxJava中提供的6种线程MainThreadIOComputationSingleNewThreadTrampoline

    引用

    gradle中加入:

    1. dependencies {
    2. compile 'com.github.vitess:rxbus:2.0.2'
    3. annotationProcessor 'com.github.vitess:rxbus-compiler:2.0.2'
    4. }
    • 1

    开发版本的快照可从Sonatype’s snapshots repository中找到。

    使用

    在类的初始化处使用RxBus.register注册,并在类销毁的地方使用RxBus.unregister注销。注册后的类中的方法即可使用@Subscribe注释标记,此后在类以外的地方即可通过RxBus.post发射数据到指定方法中。

    当使用@Subscribe标记方法时,若不指定特定的tag,该方法将被默认的tag所标记。这一类被默认tag标记的方法可接收RxBus.post(Object value)发射数据,或者使用RxBus.post(Subscribe.DEFAULT , ${value})来显式发射。

    For example:

    1. public class MainActivity extends AppCompatActivity {
    2. @Override
    3. protected void onCreate(Bundle savedInstanceState) {
    4. super.onCreate(savedInstanceState);
    5. setContentView(R.layout.activity_main);
    6. RxBus.register(this);
    7. //TODO something
    8. ...
    9. findViewById(R.id.button).setOnClickListenernew(View.OnClickListener() {
    10. @Override
    11. public void onClick(View v) {
    12. RxBus.post("receiver1", 123);//post to receiver1
    13. RxBus.post("This is post to receiver2");//post to receiver2
    14. RxBus.post(new Object());//post to receiver3
    15. RxBus.post("receiver4", null);//post to receiver4
    16. RxBus.post(null);//post to receiver5
    17. }
    18. });
    19. }
    20. @Override
    21. protected void onDestroy() {
    22. super.onDestroy();
    23. RxBus.unregister(this);
    24. }
    25. @Subscribe("receiver1")
    26. @RxThread(ThreadType.IO)
    27. public void receiver1(int random) {
    28. Log.i("RxBus", "receiver1:" + Thread.currentThread().getName());
    29. }
    30. @Subscribe
    31. @RxThread(ThreadType.Single)
    32. public void receiver2(String str) {
    33. Log.i("RxBus", "receiver2:" + Thread.currentThread().getName());
    34. }
    35. @Subscribe
    36. public void receiver3(Object obj) {
    37. Log.i("RxBus", "receiver3:" + Thread.currentThread().getName());
    38. }
    39. @Subscribe("receiver4")
    40. public void receiver4(){
    41. Log.i("RxBus", "receiver4:" + Thread.currentThread().getName());
    42. }
    43. @Subscribe
    44. public void receiver5(){
    45. Log.i("RxBus", "receiver5:" + Thread.currentThread().getName());
    46. }
    47. }
    • 1

    限制

    1. 目前支持发送null值(虽然post方法标记了@NonNull)
    2. 不支持发送实现了Map、Collection接口的参数类型(如ArrayList、HashMap等),如果必须发送这种集合容器参数,请自实现实体类,集合容器作为成员变量,然后发送实体类参数

    TODO

    目前思路稍微有些瓶颈,如果有好点子或者有可改进的地方,欢迎pull request,thanks!

    • 增加单元测试
    • 优化Processor性能
    • 优化模板代码
    • 优化Processor的缓存方式和生成模式
    • 增加sticky事件支持
    • 根据使用方式分别生成不同的Observable,使用频率较少的用post方法发射,每次独立生成Single完成操作;使用频率较高且生命周期较长的使用continuePost方法发射,仅生成Processor完成操作
    • etc.

    License

    1. Copyright 2017 Vincent Tam
    2. Licensed under the Apache License, Version 2.0 (the "License");
    3. you may not use this file except in compliance with the License.
    4. You may obtain a copy of the License at
    5. http://www.apache.org/licenses/LICENSE-2.0
    6. Unless required by applicable law or agreed to in writing, software
    7. distributed under the License is distributed on an "AS IS" BASIS,
    8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    9. See the License for the specific language governing permissions and
    10. limitations under the License.
  • 相关阅读:
    时尚零售企业商品计划管理的数字化之旅
    题解:HDOJ 选择最佳路线
    5分钟学会Tomcat
    在css中设计好看的阴影
    oracle面试题
    locust 权重
    Android深度性能优化-更底层、全局、多维度优化
    STM32 HAL库F103系列之ADC实验(三)
    Unity存档系统——Json格式的文件
    最新AI系统ChatGPT源码+支持OpenAI全模型+国内AI模型+AI绘画
  • 原文地址:https://blog.csdn.net/m0_72495985/article/details/125578644