ANHMySQLLib.AsyncMysqlConnection.AsyncMysqlConnection C# (CSharp) 메소드

AsyncMysqlConnection() 공개 메소드

public AsyncMysqlConnection ( MySqlConnection connection, SharedWorkQueue commandQueue ) : System
connection MySql.Data.MySqlClient.MySqlConnection
commandQueue SharedWorkQueue
리턴 System
        public AsyncMysqlConnection(MySqlConnection connection, SharedWorkQueue<AsyncMysqlCommand> commandQueue)
        {
            mConnection = connection;
            mCommandQueue = commandQueue;
            mProcessor = new Thread(new ThreadStart(this.Process));
            mRunning = true;

            mProcessor.Start();
        }