Avoid Tracking

From Documentation
Revision as of 07:07, 8 February 2012 by Hawk (talk | contribs) (Created page with "{{ZKDevelopersReferencePageHeader}} When we create a property binding to a ViewModel's property, a '''tracker''' creates a corresponding tracking record to maintain this bindi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


When we create a property binding to a ViewModel's property, a tracker creates a corresponding tracking record to maintain this binding relationship. Thus when a binder reads properties from annotation @NotifyChange , it knows which attributes to reload upon the tracking records. This tracking task consumes time and memory and impacts application performance. If we have an object that its properties never change during whole application running, it's unnecessary to keep track of this immutable object's properties. We can apply @Immutable annotation on this immutable object to reduce the cost of tracking. If we bind a attribute to an immutable object's property, the tracker won't create a corresponding tracking record for it.

Immutable object

@Immutable
public class SysDefaultConfig{

}

Reference an immutable object

<label value="@load(vm.sysDefaultConfig.size)"/>



Last Update : 2012/02/08

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.