com.microstrategy.web.objects.rw.RWIncrementalFetchSettings |
The RWIncrementalFetchSettings interface allows the user to set the window of document
results that the Intelligence Server should return. This object can only be
obtained from RWInstance
.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract int | getBlockBegin() | ||||||||||
abstract int | getBlockCount() | ||||||||||
abstract String | getGBKey() | ||||||||||
abstract int |
getMaxRows()
Gets the maximum number of rows value for the window settings applied.
| ||||||||||
abstract int | getTotalBlocks() | ||||||||||
abstract int | getTotalElements() | ||||||||||
abstract boolean |
isEnabled()
Returns true if the Incremental Fetch is enabled in this document.
| ||||||||||
abstract boolean |
isFetchAvailable()
Returns true if the Incremental fetch is enabled in the document and
the data allows us to perform an incremental fetch.
| ||||||||||
abstract void | setBlockBegin(int value) | ||||||||||
abstract void | setBlockCount(int value) | ||||||||||
abstract void |
setEnabled(boolean value)
Sets whether the Incremental fetch is enabled in this document.
| ||||||||||
abstract void | setGBKey(String value) | ||||||||||
abstract void |
setMaxRows(int value)
Sets the maximum number of rows for the window setting to be applied.
|
Gets the maximum number of rows value for the window settings applied. It corresponds to the wmr in the window settings.
Returns true if the Incremental Fetch is enabled in this document.
Returns true if the Incremental fetch is enabled in the document and the data allows us to perform an incremental fetch.
Sets whether the Incremental fetch is enabled in this document.
value | boolean value to enable or disable. |
---|
WebObjectsException |
---|
Sets the maximum number of rows for the window setting to be applied. It corresponds to the wmr in the window settings.
value | representing the max rows for the incremental fetch |
---|