(EventBus bus, Object target, Method method)
| 58 | private final Executor executor; |
| 59 | |
| 60 | private Subscriber(EventBus bus, Object target, Method method) { |
| 61 | this.bus = bus; |
| 62 | this.target = checkNotNull(target); |
| 63 | this.method = method; |
| 64 | method.setAccessible(true); |
| 65 | |
| 66 | this.executor = bus.executor(); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Dispatches {@code event} to this subscriber using the proper executor. |
nothing calls this directly
no test coverage detected