[SPIGOT-5234] Unnecessary synchronization Created: 31/Jul/19  Updated: 01/Aug/19  Resolved: 01/Aug/19

Status: Resolved
Project: Spigot
Component/s: None
Affects Version/s: None
Fix Version/s: None

Type: Bug Priority: Minor
Reporter: Sunmisc Assignee: Unassigned
Resolution: Invalid Votes: 0
Labels: bukkit, event

Attachments: PNG File sync1.png     PNG File sync2.png    
Version: 1.14.4
Guidelines Read: Yes

 Description   

 
I'm from Russia, sorry for the modest knowledge of English
Maybe I'm wrong, but something tells me that in the class HandlerList(org.bukkit.event) There is excessive synchronization(where it should not be), which can result in poor performance, field handlers (

private volatile RegisteredListener[] handlers = null;

) which is declared as volatile. Such fields can be confusing because access to the array itself follows the rules for volatile fields, but access to the array content does not. the

private static ArrayList<HandlerList> allLists = new ArrayList<>();

field is static, why synchronize it?(I could be wrong)



 Comments   
Comment by Black Hole [ 31/Jul/19 ]

The goal is to have event calls fast. Registering and unregistering events is used mainly in plugin initialization only.
If there are changes to the event handlers the handlers field is written with a new array. So array elements don't have to be volatile.

bakeIt() and other static methods could be called from multiple threads at the same time, so it's important that allLists ist synchronized.

Generated at Thu Apr 03 16:26:21 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.