The Android SDK for Optimizely includes the method Optimizely.startOptimizelyAsnyc()
However, the only documentation for it exists here and is quite lacking. I can't find any other documentation or mention of it on the web.
I would like to use this method instead of the regular startOptimizely
recommended in the quickstart, because I'd like the web request to occur asynchronously instead of relying on the 2.5-second timeout. Are there any risks or downsides to using the async method?
Also, I am not interested in any callbacks. Is it ok to pass in null
for the callback listener argument?
So far, I am using this method and passing null
for the callback and everything SEEMS to be working smoothly. But I'd like to know for sure if this may cause any unpleasant surprises down the line.
Thank you!