| java.lang.Object nextapp.echo2.webrender.UserInstanceUpdateManager
UserInstanceUpdateManager | public class UserInstanceUpdateManager implements Serializable(Code) | | Provides information about changes to UserInstance properties
of which the client engine needs to be informed.
|
Method Summary | |
public String[] | getPropertyUpdateNames() Retrieves the names of updated properties. | void | processPropertyUpdate(String name) Processes a property update from the UserInstance , storing
the name of the property in the list of properties to be updated. | public void | purge() Purges list of updated property names. |
getPropertyUpdateNames | public String[] getPropertyUpdateNames()(Code) | | Retrieves the names of updated properties.
This method is queried by the SynchronizeService .
an array of the updated property names (returns an empty arrayif no properties have changed) |
processPropertyUpdate | void processPropertyUpdate(String name)(Code) | | Processes a property update from the UserInstance , storing
the name of the property in the list of properties to be updated.
Parameters: name - the name of the property |
purge | public void purge()(Code) | | Purges list of updated property names.
This method is invoked by the SynchronizeService when it
has finished rendering the updates to the client.
|
|
|