ATUAV_RT.WindowingConsolePrinter.ProcessWindow C# (CSharp) Method

ProcessWindow() public method

Prints the accumulated fixation and gaze data events without dropping intermittent events.
public ProcessWindow ( ) : void
return void
        public void ProcessWindow()
        {
            lock (this)
            {
                PrintData();
                if (!cumulativeData)
                {
                    events.Clear();
                }
            }
        }

Same methods

WindowingConsolePrinter::ProcessWindow ( bool keepData ) : void