how to identify caller for eventbus on activity class

Viewed 133

i am using EventBus on activity and override one event ABC. now i am calling that event from multiple classes (EventBus.getDefault().post(new ABC()) etc.) and i am getting callback on my activity class. so my question is : is there any way to identify caller who called that event on my activity class.

2 Answers
Related