Evaluate if its possible to guarantee the order of listeners by using a LinkedHashMap

Activity

Robin Collier 
January 30, 2014 at 7:12 PM

A List would be a better fit since it defines an Ordered sequence by definition. Then any users of this List can be assured of its ordering. The Map really isn't necessary for this structure at, since it is the values that are parsed over sequentially in any case. Thus for general usage it is used in the same manner as a List but without the guarantee of ordering.

Only deletes use the Map structure, and that can still be accomplished by traversing the list.

Fixed

Details

Assignee

Reporter

Ignite Forum URL

Components

Fix versions

Affects versions

Priority

Created January 24, 2014 at 9:59 AM
Updated October 28, 2020 at 1:28 PM
Resolved January 12, 2015 at 1:16 PM