maxCachedContexts method Null safety
- int maxCachedContexts
Sets how many contexts to store the flag values for in on-device storage.
A negative value indicates that the SDK should store the flags for every context it is configured for, never removing the stored values for the least recently used context
The currently configured context is not considered part of this limit.
The default value of this configuration option is 5
.
Implementation
LDConfigBuilder maxCachedContexts(int maxCachedContexts) {
this._maxCachedContexts = maxCachedContexts < 0 ? -1 : maxCachedContexts;
return this;
}