Amazon.MobileAnalytics.MobileAnalyticsManager.Internal.BackgroundRunner.AbortBackgroundThread C# (CSharp) Méthode

AbortBackgroundThread() public static méthode

Abort the background worker
public static AbortBackgroundThread ( ) : void
Résultat void
        public static void AbortBackgroundThread()
        {
            _shouldStop = true;
            if (_thread != null)
            {
                _thread.Join();
                _thread = null;
            }
        }