From fadbe7c7c09a18531fadf9fb9996548db411f10b Mon Sep 17 00:00:00 2001 From: Tapash Majumder Date: Tue, 20 Oct 2020 10:38:42 +0530 Subject: [PATCH] Make `enableOfflineMode` internal for now. --- swift-sdk/IterableConfig.swift | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/swift-sdk/IterableConfig.swift b/swift-sdk/IterableConfig.swift index b12bf13c3..009f7f228 100644 --- a/swift-sdk/IterableConfig.swift +++ b/swift-sdk/IterableConfig.swift @@ -129,11 +129,13 @@ public class IterableConfig: NSObject { /// an expiration date field in it public var expiringAuthTokenRefreshPeriod: TimeInterval = 60.0 - /// If set to true, events will be queued locally when network is offline. - /// When the network is online again, the queued events will be sent to our backend. - public var enableOfflineMode = false - /// These are internal. Do not change internal var apiEndpoint = Endpoint.api internal var linksEndpoint = Endpoint.links + + /// If set to true, events will be queued locally when network is offline. + /// When the network is online again, the queued events will be sent to our backend. + /// This is currently an experimental feature. + /// Please *DO NOT* enable this option without talking to your customer service rep. + internal var enableOfflineMode = false }