Thread Safety #36
Labels
No Label
1
13
2
21
3
34
5
55
8
bug
core
could have
duplicate
enhancement
help wanted
must have
proc
question
should have
wont have
L
M
S
XL
bug
bugfix
discussion
documentation
feature
maintenance
postponed
refactoring
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: zdm/event-bus#36
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
EventBus
should be mostly thread safe already, but that should be verified and ideally tested.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 aforementioned high-level operations are executed simultaneously on multiple threads.I am working on an efficient and complete thread-safety implementation based on
StampLock
.