We support data redirection to our servers in different clusters. Use redirectDataToRegion: method to redirect the data to different clusters defined in DataRedirectionRegion Enumerator. Use the method as shown below and call the method before initializing the SDK:
import MoEngage
// Redirect Method
MoEngage.redirectData(to: MOE_REGION_EU)
// Possible Values for Clusters
enum DataRedirectionRegion {
case MOE_REGION_SERV3
case MOE_REGION_EU
case MOE_REGION_DEFAULT
}
#import<MoEngage/MoEngage.h>
// Redirect Method
[MoEngage redirectDataToRegion:MOE_REGION_EU];
// Possible Values for Clusters
enum DataRedirectionRegion{
MOE_REGION_SERV3,
MOE_REGION_EU,
MOE_REGION_DEFAULT
};
IMPORTANT:
Please make sure that you consult with MoEngage team before using this method for redirecting the data.
Updated 3 months ago