isFastUpdateMode method
Returns whether fast update mode is currently active for this store.
Returns
- bool:
truewhen active, otherwisefalse.
See also:
- startFastUpdateMode — enables fast update mode.
- stopFastUpdateMode — disables fast update mode.
Implementation
bool isFastUpdateMode() {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStore',
'isFastUpdateMode',
);
return resultString['result'];
}