flybyGWT
Hello we are encountering a scenarios where the JS client is calling a subscribe set in command mode. The subscribe on the Java Adapter is our SmartDataProvider's void subscribe(java.lang.String itemName,boolean needsIterator)... which is "never called in this case".
Thoughts?
Dario Crivelli
The SmartDataProvider interface overloads the subscribe(java.lang.String itemName,boolean needsIterator) it inherits from DataProvider with a 3-argument version.
When a SmartDataProvider is supplied, the Server only invokes the 3-argument version and never the 2-argument version.
So, we expect that the extended 3-argument version is invoked.
Can you confirm?