I oversimplified a bit. Actually what is getting called is:
getComponentName(event?: LazyLoadEvent) {
if (this.primengTableHelper.shouldResetPaging(event)) {
this.paginator.changePage(0);
return;
}
this.primengTableHelper.showLoadingIndicator();
this._ssFolioServiceProxy
.getAll(
this.filterText,
..............
..............
So GetAll is not being called directly is unresolved in setInterval(this.getAll, getAllInterval).
So in this case how SetInterval be used?
Incomplete posting of problem - closing in lieu of new request.