TomRidder

Results 49 comments of TomRidder

thank you it works.But how to use 1.3.0? the useage in the readme can not be used in version of 1.3.0

startPlay->startVodPlay 修改

probably can't. because when the daemon threads and user threads finish their work,jvm will quit. but [post] method and [subscribe] method would be called durring the runtime always

i guess it can't be changed like u said because eventbus will post stick event when execute register method. so if there 's a stick event in ur dialog and...

if subscribe method is in fragment . then u should pass in fragment not activity

> Thanks for clarifying. I was trying to understand the code and that part was confusing. Even if it does not have any performance impact, removing the condition statement (assuming...

is it necessary for developers? it so ... we can let developers write an self defined annotation extends @subscribe and check the necessary variables on self defined annotation @greenrobot-team

> u can use a bool value to monitor if event A is finished. like this private bool isFinished =false; @Subscribe(ThreadMode.BackGround) // Highest priority to always be executed first public...

`final class BackgroundPoster implements Runnable, Poster { private final PendingPostQueue queue; private final EventBus eventBus; private volatile boolean executorRunning; BackgroundPoster(EventBus eventBus) { this.eventBus = eventBus; queue = new PendingPostQueue(); }...