igniteui-react-core
Version:
Ignite UI React Core.
55 lines (54 loc) • 2.07 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 { Base, markType } from "./type";
/**
* @hidden
*/
export let AsyncVirtualDataSourceDataProviderWorkerSettings = /*@__PURE__*/ (() => {
class AsyncVirtualDataSourceDataProviderWorkerSettings extends Base {
constructor() {
super(...arguments);
this._pageSizeRequested = 0;
this._timeoutMilliseconds = 0;
this._pageLoaded = null;
this._batchCompleted = null;
this._executionContext = null;
}
get pageSizeRequested() {
return this._pageSizeRequested;
}
set pageSizeRequested(a) {
this._pageSizeRequested = a;
}
get timeoutMilliseconds() {
return this._timeoutMilliseconds;
}
set timeoutMilliseconds(a) {
this._timeoutMilliseconds = a;
}
get pageLoaded() {
return this._pageLoaded;
}
set pageLoaded(a) {
this._pageLoaded = a;
}
get batchCompleted() {
return this._batchCompleted;
}
set batchCompleted(a) {
this._batchCompleted = a;
}
get executionContext() {
return this._executionContext;
}
set executionContext(a) {
this._executionContext = a;
}
}
AsyncVirtualDataSourceDataProviderWorkerSettings.$t = /*@__PURE__*/ markType(AsyncVirtualDataSourceDataProviderWorkerSettings, 'AsyncVirtualDataSourceDataProviderWorkerSettings');
return AsyncVirtualDataSourceDataProviderWorkerSettings;
})();