maxWriteOperationsPerHour property

int get maxWriteOperationsPerHour

The maximum number of set, remove, or clear operations that can be performed each hour. This is 1 every 2 seconds, a lower ceiling than the short term higher writes-per-minute limit.

Updates that would cause this limit to be exceeded fail immediately and set runtime.lastError.

Implementation

int get maxWriteOperationsPerHour => _wrapped.MAX_WRITE_OPERATIONS_PER_HOUR;
set maxWriteOperationsPerHour (int v)

Implementation

set maxWriteOperationsPerHour(int v) {
  _wrapped.MAX_WRITE_OPERATIONS_PER_HOUR = v;
}