MCAEmotiv.Interop.AbstractEEGDataSource.AbstractEEGDataSource C# (CSharp) Method

AbstractEEGDataSource() public method

Construct a data source with its own reader thread
public AbstractEEGDataSource ( ) : System
return System
        public AbstractEEGDataSource()
        {
            this.readerThread = new Thread(this.ReadLoop) { IsBackground = true, Name = "EEG Polling Thread" };
        }