You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: splitio_platform_interface/lib/split_configuration.dart
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -21,15 +21,15 @@ class SplitConfiguration {
21
21
///
22
22
/// [eventFlushInterval] When using .track, how often the events queue is flushed to Split servers.
23
23
///
24
-
/// [eventsPerPush] Maximum size of the batch to push events.
24
+
/// [eventsPerPush] Maximum size of the batch to push events. Not supported in Web.
25
25
///
26
26
/// [trafficType] The default traffic type for events tracked using the track method. If not specified, every track call should specify a traffic type.
27
27
///
28
28
/// [enableDebug] (Deprecated; use logLevel instead) If true, the SDK will log debug messages to the console.
29
29
///
30
30
/// [streamingEnabled] Boolean flag to enable the streaming service as default synchronization mechanism when in foreground. In the event of an issue with streaming, the SDK will fallback to the polling mechanism. If false, the SDK will poll for changes as usual without attempting to use streaming.
31
31
///
32
-
/// [persistentAttributesEnabled] Enables saving attributes on persistent cache which is loaded as part of the SDK_READY_FROM_CACHE flow. All functions that mutate the stored attributes map affect the persistent cache.
32
+
/// [persistentAttributesEnabled] Enables saving attributes on persistent cache which is loaded as part of the SDK_READY_FROM_CACHE flow. All functions that mutate the stored attributes map affect the persistent cache. Not supported in Web.
33
33
///
34
34
/// [impressionListener] Enables impression listener. If true, generated impressions will be streamed in the impressionsStream() method of Splitio.
35
35
///
@@ -41,13 +41,13 @@ class SplitConfiguration {
41
41
///
42
42
/// [userConsent] User consent status used to control the tracking of events and impressions. Possible values are [UserConsent.granted], [UserConsent.declined], and [UserConsent.unknown].
43
43
///
44
-
/// [encryptionEnabled] If set to true, the local database contents is encrypted. Defaults to false.
44
+
/// [encryptionEnabled] If set to true, the local database contents is encrypted. Defaults to false. Not supported in Web.
45
45
///
46
46
/// [logLevel] Enables logging according to the level specified. Options are [SplitLogLevel.verbose], [SplitLogLevel.none], [SplitLogLevel.debug], [SplitLogLevel.info], [SplitLogLevel.warning], and [SplitLogLevel.error].
47
47
///
48
48
/// [readyTimeout] Maximum amount of time in seconds to wait before firing the SDK_READY_TIMED_OUT event. Defaults to 10 seconds.
49
49
///
50
-
/// [certificatePinningConfiguration] Certificate pinning configuration. Pins need to have the format of a base64 SHA-256 or base64 SHA-1 hashes of the SPKI (ex.: "sha256/7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y=").
50
+
/// [certificatePinningConfiguration] Certificate pinning configuration. Pins need to have the format of a base64 SHA-256 or base64 SHA-1 hashes of the SPKI (ex.: "sha256/7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y="). Not supported in Web.
0 commit comments