EventBus icon indicating copy to clipboard operation
EventBus copied to clipboard

Android Handler Async API

Open takahirom opened this issue 5 years ago • 2 comments

I think that performance can be improved by adding an API that can use Message#setAsynchronous() and Handler.createAsync(). https://medium.com/@sweers/rxandroids-new-async-api-4ab5b3ad3e93

takahirom avatar Aug 23 '18 02:08 takahirom

@greenrobot Is there any plan to apply it?

takahirom avatar Aug 23 '18 03:08 takahirom

Thanks, I also saw this. Maybe this is worth looking into.

TLDR: There is a new Message#setAsynchronous() method in API 22 which allows to bypass the VSYNC lock (16ms) when posting it with Handler. -ut

greenrobot-team avatar Aug 27 '18 12:08 greenrobot-team