Avatar

Correct answer by
Level 3

You should not call refreshFill() etc, rather you should call the relevant CRUD method for the object changed, please see the Javadoc I linked to. For example:

public void createItem(String destination, Object item)

You use this method to indicate to to the Data Management Service that a new item has been created.

So on calling this method and committing the transaction, LCDS will take care of pushing the new object to clients etc.

View solution in original post