Avatar

Level 2
In my application changes are sent to others by a node and
those changes, once published to connected users, are no more
required on the cocomo serveries. So I set configurations for this
node as



changesNodeConfig = new NodeConfiguration();

changesNodeConfig.persistItems = false;



Although I have set presistItems false. During development
when I launch a new session for this application it receives
changes from previous session. It was kind of confusing then I
changed my settings to this



changesNodeConfig = new NodeConfiguration();

changesNodeConfig.persistItems = false;

changesNodeConfig.userDependentItems = true;



and it worked. I have read their description for these flags
in cocomo pdf document. Can anybody elaborate them a bit more. Are
these flags independent? and can we set them in combination
according to application needs?