Block a user
d117052ca4
Aggregate Change
b30f806894
Improve Javadoc, make wrapper properties final
Thread Safety
As it turns out, EventBus
isn't actually thread-safe in the context of registering listeners and dispatching events. The underlying collections are, but that's not sufficient when the…
cc5c07079a
Merge pull request 'Handler Caching' (#37) from f/handler-caching into develop
8fae4f6d76
Remove print statements from test
2d276a1d74
Compare listener using equals() during removal
8609c6a90c
Simplify binding cache usage
ee9d08b2b8
Test binding cache
Handler Caching
As we implicitly test using equals
in registerListener(...)
, I will change this as well.