@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface AcceptConcurrentEvents
When this annotation is added to a method, it implies that the EventBus may call this method from multiple threads
and the method is made to be thread safe
- Author:
- Kasun Piyumal