With libraries like Otto and EventBus I wonder whether it still makes sense to use Handler:
A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated with a single thread and that thread's message queue.
How can handlers be used in addition to event bus libraries? I recon it is sufficient to use vanilla threads and send messages directly over the event bus or am I missing something here?