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