isFastUpdateMode method

bool isFastUpdateMode()

Returns whether fast update mode is currently active for this store.

Returns

  • bool: true when active, otherwise false.

See also:

Implementation

bool isFastUpdateMode() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkStore',
    'isFastUpdateMode',
  );

  return resultString['result'];
}