mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
CompositeRetryListener currently uses LinkedList to store registered listeners. The primary operation on this list is iteration (traversing all listeners on every retry lifecycle event). ArrayList provides better iteration performance due to better cache locality and lower memory overhead. Closes gh-37231 Signed-off-by: Chengang Guan <guanchengang@qq.com>