Hi All,

I have written my test Adapter and have got a web page subscribing to the updates.

I wanted to know how LS handle multiple components on the same page requesting the same items? Do it open multiple channels???

e.g. if multiple JS components on the page do the following, what is going to happen?

var schema = new Array("field1","field2","field3","lastUpdate");
var group = new Array("item1","item2");

var newTable = new NonVisualTable(group, schema, "MERGE");
newTable.setSnapshotRequired(true);
newTable.onItemUpdate = updateFunction;
page.addTable(newTable, "myItems");

Thanks
jag