igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.94 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { BaseDataSourceDescription } from "./BaseDataSourceDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let VirtualDataSourceDescription = /*@__PURE__*/ (() => {
class VirtualDataSourceDescription extends BaseDataSourceDescription {
constructor() {
super();
this.a9 = 0;
this.a8 = 0;
this.a7 = 0;
this.bd = null;
}
get_type() {
return "VirtualDataSource";
}
get pageSizeRequested() {
return this.a9;
}
set pageSizeRequested(a) {
this.a9 = a;
this.j("PageSizeRequested");
}
get maxCachedPages() {
return this.a8;
}
set maxCachedPages(a) {
this.a8 = a;
this.j("MaxCachedPages");
}
get actualPageSize() {
return this.a7;
}
set actualPageSize(a) {
this.a7 = a;
this.j("ActualPageSize");
}
get concurrencyTag() {
return this.bd;
}
set concurrencyTag(a) {
this.bd = a;
this.j("ConcurrencyTag");
}
}
VirtualDataSourceDescription.$t = markType(VirtualDataSourceDescription, 'VirtualDataSourceDescription', BaseDataSourceDescription.$);
return VirtualDataSourceDescription;
})();