예제 #1
0
        public void UseFeature(Feature feature, params object[] parameters)
        {
            // when there are parameters, create a feature instance which includes them for serialization:
            if (parameters.Length > 0)
            {
                feature = feature._(parameters);
            }

            // Check that we are not meant to be storing this feature only once...
            if (feature.RecordOnlyOncePerSession)
            {
                Utilities.LockPerfTimer l1_clk = Utilities.LockPerfChecker.Start();
                lock (used_once_off_per_session_features_lock)
                {
                    l1_clk.LockPerfTimerStop();
                    if (used_once_off_per_session_features.Contains(feature.Name))
                    {
                        return;
                    }
                    else
                    {
                        used_once_off_per_session_features.Add(feature.Name);
                    }
                }
            }

#if false
            // Send to GA
            GoogleAnalysicsSubmitter.Submit(feature);
#endif
        }
예제 #2
0
        public void UseFeature(Feature feature, params object[] parameters)
        {
            // Check that we are not meant to be storing this feature only once...
            if (feature.RecordOnlyOncePerSession)
            {
                lock (used_once_off_per_session_features)
                {
                    if (used_once_off_per_session_features.Contains(feature.Name))
                    {
                        return;
                    }
                    else
                    {
                        used_once_off_per_session_features.Add(feature.Name);
                    }
                }
            }

            // Send to GA
            GoogleAnalysicsSubmitter.Submit(feature);
        }