mkodekar / guava-libraries

Automatically exported from code.google.com/p/guava-libraries
Apache License 2.0
0 stars 0 forks source link

Order of enqueued events #1862

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The post order of enqueued events is not guaranteed. In practice the order of 
enqueued events is the same for the majority of the time but not always. In my 
case, each start of my application could have a different order of posted 
events. This makes testing and bugfixing a lot harder.
Changing the subscribersByType from HashMultimap to LinkedHashMultimap in the 
EventBus class fixed it for me.

Original issue reported on code.google.com by christia...@gmail.com on 10 Oct 2014 at 9:58

GoogleCodeExporter commented 9 years ago
This issue has been migrated to GitHub.

It can be found at https://github.com/google/guava/issues/<issue id>

Original comment by cgdecker@google.com on 1 Nov 2014 at 4:08

GoogleCodeExporter commented 9 years ago

Original comment by cgdecker@google.com on 1 Nov 2014 at 4:17

GoogleCodeExporter commented 9 years ago

Original comment by cgdecker@google.com on 3 Nov 2014 at 9:07