android 事件总线 -- Otto(五) EventHandler、EventProducer、AnnotatedHandlerFinder

本文详细探讨了Otto事件总线中的核心组件,包括EventHandler用于处理事件订阅的方法,EventProducer则关注事件的生产。同时,AnnotatedHandlerFinder通过反射机制,有效地查找并管理@Produce和@Subscribe注解的方法。

在EventHandler、EventProducer其实可以看作两个实体类,EventHandler用来保存每一个事件注册的类和注册方法,最后提供一个通过反射机制调用方法;EventProducer用来保存每一个事件生产者类和生产方法,最后提供一个通过反射机制调用方法。

AnnotatedHandlerFinder

这个类用来负责通过反射获取 通过 @Produce 注释的方法和通过 @Subscribe 注释的方法。

/**
   * Load all methods annotated with {@link Produce} or {@link Subscribe} into their respective caches for the
   * specified class.
   * 从事件类中加载用@Producer或@Subscribe注释的方法,并放入到相应的集合中
   */
  private static void loadAnnotatedMethods(Class<?> listenerClass,
      Map<Class<?>, Method> producerMethods, Map<Class<?>, Set<Method>> subscriberMethods) {
	  // 遍历类中所有声明的方法
	  for (Method method : listenerClass.getDeclaredMethods()) {
      // The compiler sometimes creates synthetic bridge methods as part of the
      // type erasure process. As of JDK8 these methods now include the same
      // annotations as the original declarations. They should be igno
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值