45 | | * lots of reads should be registered with the ProList itself but with an Aspect of the ProList, and so lots of listeners will be attached to the Aspects, instead of the ProList |
46 | | * ProChanges will be fired from the Aspects of the ProList to registered listeners, instead of always firing from the ProList itself. |
47 | | * the internal list which actually holds the elements in a ProList is the CacheList. Its access and mutator methods register reads to the whole ProList. Instead of doing this, these methods will be modified to register reads only to affected aspects of the ProList. |
| 45 | * lots of reads should be registered not with the BaseProList itself but with an Aspect of the BaseProList, and so lots of listeners will be attached to the Aspects, instead of the BaseProList |
| 46 | * ProChanges will be fired from the Aspects of the BaseProList to registered listeners, instead of always firing from the BaseProList itself. |
50 | | * A '''size''' Aspect which AutoProperties interested in only the size of a ProList will attach listeners to. |
51 | | * A set of '''key''' Aspects. When using findOne() and findAll() methods of a ProList, a key is used to find all elements of the ProList which have the given key. So a key Aspect for each set of elements having the same key will be present and when the ProList changes but this set doesn't, an AutoProperty which depends only on this set won't get updated. |
52 | | |
53 | | When firing ProChanges from a given Aspect of the ProList, they will be coupled with a respective ProChange fired from the whole ProList and only these mirroring ProChanges will get registered in the ChangeManager responsible for the ProList. Changes fired from Aspects need not and won't be registered. |
54 | | |
| 49 | * A '''size''' Aspect which AutoTrackers interested in only the size of a BaseProList will attach listeners to. |
| 50 | * A set of '''key''' Aspects. When using findOne() and findAll() methods of a ProList, a key is used to find all elements of the BaseProList which have the given key. So a key Aspect for each set of elements having the same key will be present and listeners will be attached to this Aspect, instead of the BaseProList. When the BaseProList changes but this set doesn't, an AutoTracker which depends only on this set won't get updated. |